2011-08-17 145 views

回答

0

樣式它與CSS和使用指針事件:

<label> 
<select> 
    <option value="0">Zero</option> 
    <option value="1">One</option> 
</select> 
</label> 

,相對CSS是

label:after { 
    content:'\25BC'; 
    display:inline-block; 
    color:#000; 
    background-color:#fff; 
    margin-left:-17px; /* remove the damn :after space */ 
    pointer-events:none; /* let the click pass trough */ 
} 

如果你想使用圖像背景塊,我只是在這裏使用向下的箭頭。這是一個難看的小提琴樣品:https://jsfiddle.net/1rofzz89/

相關問題