你若决定灿烂,倒影也会美得让人惊叹。早安!幸运从来不是偶然,你所做的每件事,都会有惊喜等待着你。早安。
序号 | 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 |
总结:
- 如果你需要从0开始自适应高度,那么不要定义width/height/overflow
- 如果你要定义小于15像素的高度,加上 overflow:hidden; 就可以了
演示地址: http://demo.haodaima.com/html/IE-default-height.html
到此这篇关于IE 元素默认高度研究就介绍到这了。一个人,想要优秀,你必须要接受挑战;一个人,你想要尽快优秀,就要去寻找挑战。世界上,成功的有两种人,一种人是傻瓜,一种人是疯子。傻瓜是会吃亏的人,疯子是会行动的人。更多相关IE 元素默认高度研究内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!