butterandfly / project_9

Blog & Remark
0 stars 0 forks source link

mobile上设置select的大小 #233

Open butterandfly opened 9 years ago

butterandfly commented 9 years ago

参考:http://stackoverflow.com/questions/20477823/select-html-element-with-height 简单来说,就是:

@media screen and (-webkit-min-device-pixel-ratio:0) {  /*safari and chrome*/
    select {
        height:30px;
        line-height:30px;
        background:#f4f4f4;
    } 
}