select、input等默認樣式的改變,包含下拉三角

select、input等默認樣式的改變,包含下拉三角
select{
    /*去除外邊框*/
    border: none; 
    /*適應safari瀏覽器內容不跑偏*/
    line-height: 1;
    width: 100%;
    /*將默認的select選擇框樣式清除*/  
    appearance:none;  
    -moz-appearance:none;  
    -webkit-appearance:none;  
    /*在選擇框的最右側中間顯示小箭頭圖片*/  
    background: url("../../img/my/btn_pulldown.png") no-repeat scroll right center transparent;
    background-size: 0.9rem 0.9rem;
    /*爲下拉小箭頭留出一點位置,避免被文字覆蓋*/  
    padding-right: 14px;
    font-size: 1.4rem;
    color: #666666;
    /*去除選中時樣式*/
    outline: none;
    /*去除點擊一閃而過的灰色背景*/
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
input同selectweb

相關文章
相關標籤/搜索