在做下拉框select时用一个箭头符号,作为下拉框的三角,在firefox和chrome下均可以正常显示,但是在IE下无法显示。
问题在于图片格式,把png格式的转换成gif的就可以了。
例子:
复制代码 代码示例:
<style type="text/css">
.select{ width:180px; height:29px; overflow:hidden; border:solid 1px #339999; border-radius:5px; background:url(images/arrow.gif) no-repeat 137px 0px;}
.select-style select{ padding:2px; background:transparent; width:200px; font-size: 16px; border:none; height:24px; -webkit-appearance: none; appearance:none;}
</style>
<div class="select">
<div class="select-style">
<select name="select">
<option>hello</option>
<option>you</option>
<option>apple</option>
<option>good</option>
</select>
</div>
</div>