我想要做的是使用「border-radius」圓角<select>
。奇怪的是,webkit瀏覽器顯示<select>
的白色背景溢出邊框。風格<select>角落爲webkit
更新 這裏的截圖和我的代碼:
HTML:
<select class="rounded_select">
<option>rounded_select</option>
</select>
CSS:
.rounded_select {
border-top: 2px solid #ccc;
border-left: 2px solid #ccc;
border-bottom: 2px solid #eee;
border-right: 2px solid #eee;
border-radius: 10px;
}
是否有任何想法如何解決它?
更新:最好將按鈕圖像保存在選擇的右側。
請顯示一些代碼以便更好地理解 – sandeep 2012-04-12 08:58:29