本文主要是介绍IE下background无法显示的问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在做下拉框select的时候用一个箭头符号,作为下拉框的三角,在firefox和chrome下均可以正常显示,但是在IE下无法显示。
查找了很久,发现是图片格式问题,把png格式的转换成gif的就没有问题了。。。。
附相关代码,主要是html的:
<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>
这篇关于IE下background无法显示的问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!