10
选择箭头样式更改
我正在尝试用自己的图片替换选择箭头。我将SELECT包含在具有相同大小的div中,将选择的背景设置为透明,并且在div的右上角包含了图片(与箭头相同的大小)作为背景。 它仅适用于Chrome。 如何在Firefox和IE9中使它正常运行: .styled-select { width: 100px; height: 17px; overflow: hidden; overflow: -moz-hidden-unscrollable; background: url(images/downarrow_blue.png) no-repeat right white; border: 2px double red; display: inline-block; position: relative; } .styled-select select { background: transparent; -webkit-appearance: none; width: 100px; font-size: 11px; border: 0; height: 17px; position: absolute; left: 0; top: 0; } body …