码迷,mamicode.com
首页 > 其他好文 > 详细

【总结整理】关于IE6的兼容性

时间:2018-03-01 21:41:30      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:ack   css hack   height   style   css   浏览器   居中   去掉   bsp   

1.

/*IE6兼容性,input边框border:none无效,不能去掉,只能把背景颜色去掉*/
background: none;
/*background-color:#fff ;*/

2.

/*IE6兼容性,计算文字纵向不居中*/
/*height: 35px;
padding: 0 5px;*/
height: 14px;/*(35-14)/2=10.5*/
line-height: 14px;
padding: 11px 5px 10px;

 

3.

/*IE6兼容性,计算文字纵向不居中*/
/*height: 35px;
padding: 0 5px;*/

/*方法一:*/

/*(35-14)/2=10.5*/
height: 14px;
line-height: 14px;
padding: 11px 5px 10px;

/*方法二:*/

height: 35px;
line-height: 35px\9;
/*css hack,\9代表所有的IE浏览器*/
padding: 0 5px;

4.

 

【总结整理】关于IE6的兼容性

标签:ack   css hack   height   style   css   浏览器   居中   去掉   bsp   

原文地址:https://www.cnblogs.com/lianghong/p/8490316.html

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