首页 > Web开发 > 详细

IE 元素默认高度研究

时间:2015-12-12 22:55:27      阅读:269      评论:0      收藏:0      [点我收藏+]
序号 HTML IE<=7 CSS样式 表现: 实际高度 (px) 说明
1 <div></div>

            
0 啥事没有
2 <div></div>
width:100px;
15 触发haslayout
3 <div></div>
height:1px;
0
4 <div></div>
overflow:hidden;
15 触发haslayout
 
5 <div></div>
width:100px; height:0px;
0
6 <div></div>
width:100px; line-height:0px
15
7 <div></div>
width:100px; font-size:0;
2
8 <div></div>
width:100px; height:0px; line-height:0px;
0
9 <div></div>
width:100px; height:0px; font-size:0;
0
10 <div></div>
width:100px; height:0px; overflow:hidden;
0 成功
11 <div></div>
width:100px; line-height:0px; overflow:hidden
15
12 <div></div>
width:100px; font-size:0px; overflow:hidden
2


总结:

  1. 如果你需要从0开始自适应高度,那么不要定义width/height/overflow
  2. 如果你要定义小于15像素的高度,加上 overflow:hidden; 就可以了

演示地址: http://demo.jb51.net/html/IE-default-height.html

IE 元素默认高度研究

原文:http://www.jb51.net/css/39560.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!