我想更改我尝试使用此代码的 cmbobox 设计,它适用于 chrome,但不适用于 Opera 和 firefox 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;
border: 0;
border-radius: 0;
height: 34px;
-webkit-appearance: none;
-moz-appearance:none;
appearance: none;
}
.styled-select {
width: 271px;
height: 43px;
overflow: hidden;
background: url(img/cmbbox.png) no-repeat;
border: 0;
}
jsFiddle:http: //jsfiddle.net/Sz2e6/