我有一個問題,通過CSS選擇框的樣式。它應該看起來像放在我的頁面中的另一個。這裏是我當前代碼的一個例子。選擇框樣式通過CSS
<select>
<option selected="selected" value="1">1</option>
<option value="2">2</option>
</select>
<br>
<input type="text" style="width:35px;margin-right:0px;">
<input type="text" style="width:180px;">
而且這裏的CSS我使用:
input[type=text], textarea, select{
border: 1px solid #cccccc;
font:10px sans-serif;
background-color: #ffffff;
width: 240px;
height:14px;
padding:5px;
color: #101010;
}
在這裏你可以找到問題的小提琴如果得了:http://jsfiddle.net/6VGWc/。選擇框是「不可見的」。我希望你能幫助我。需要