码迷,mamicode.com
首页 > Web开发 > 详细

CSS - Select 标签在不同浏览器中的高度设置

时间:2016-01-05 15:16:01      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

当使用Select标签时,在不同浏览器中显示的高度不同,如何解决此问题:

解决方法链接:http://stackoverflow.com/questions/20477823/select-html-element-with-height

Demo:http://jsfiddle.net/64px3yg5/1/

 

HTML:

<select>
    <option>Here‘s one option</option>
    <option>here‘s another option</option>
</select>

CSS:

@media screen and (-webkit-min-device-pixel-ratio:0) {  /*safari and chrome*/
    select {
        height:30px;
        line-height:30px;
        background:#f4f4f4;
    } 
}
select::-moz-focus-inner { /*Remove button padding in FF*/ 
    border: 0;
    padding: 0;
}
@-moz-document url-prefix() { /* targets Firefox only */
    select {
        padding: 15px 0!important;
    }
}        
@media screen\0 { /* IE Hacks: targets IE 8, 9 and 10 */        
    select {
        height:30px;
        line-height:30px;
    }     
}

针对实际情况,手动调节css中的高度数值。

CSS - Select 标签在不同浏览器中的高度设置

标签:

原文地址:http://www.cnblogs.com/tx8899/p/5102135.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!