我想制作一个适用于所有浏览器的自定义下拉菜单。我在这里创建了一个,但箭头不可点击。如果我将其设置为选择的背景,则 Firefox 将覆盖其顶部的箭头。有人能告诉我什么是获得适用于所有浏览器的自定义外观下拉列表的最佳技术,以及如何在没有 Javascript 的情况下使该旋钮可点击?
CSS:
#menulist {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
height: 32px;
border: 1px solid #000;
width: 260px;
text-indent: 8px;
}
.arrow {
cursor: pointer;
height: 32px;
width: 24px;
position: absolute;
right: 0px;
background-color: #c8c8c8;
background: url('http://icons.aniboom.com/Energy/Resources/userControls/TimeFrameDropDownFilter/Dropdown_Arrow.png') 0;
}
<span style="position:relative;">
<span class="arrow" ></span>
<select id="menulist">
<option value="one">One</option>
<option value="two">Two</option>
</select>
</span>