html:
<div class="select-input">
<select>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
</select>
</div>
CSS:
.select-input{
width:180px;
padding:5px;
font-family: "Helvetica-Light";
font-size: 9pt;
color:#2a2a2a;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-o-appearance: none;
background: #ffffff url(".../images/select-arrow.png") no-repeat;
background-position:143px center;
overflow:hidden;
}
.select-input{
border-style:solid;
border-width:thin;
border-color: #DDDDDD;
margin-top:5px;
}
在小提琴中查看我的演示
我自定义了下拉框的箭头,它在 Chrome、FF、Opera 中运行良好,就像在屏幕截图中一样,但在 ie9 和 ie8 中不起作用。在 ie9 和 ie8 中,我得到了像小提琴一样的输出,所以如何自定义它看起来像FF 和铬。
最后更新:工作演示