我正在使用此站点中的方法创建自定义下拉列表:http: //bavotasan.com/2011/style-select-box-using-only-css/
HTML
<div class="styled-select">
<select>
<option>Here is the first option</option>
<option>The second option</option>
</select>
</div>
CSS
.styled-select select {
background: transparent;
width: 268px;
padding: 5px;
font-size: 16px;
line-height: 1;
border: 0;
border-radius: 0;
height: 34px;
-webkit-appearance: none;
}
.styled-select {
width: 240px;
height: 34px;
overflow: hidden;
background: url(new_arrow.png) no-repeat right #ddd;
border: 1px solid #ccc;
}
链接中还有一个工作示例。所以它完美地工作。但是,当我的选项文本很长时,它会与下拉列表重叠。
这是 JSFiddle 的链接:http: //jsfiddle.net/APNB6/来说明问题
有解决方法吗?
谢谢,
三通