您好我有以下代码,这只是一个例子,但解释了我的原则
<div class='main_content'>
<p>Hello</p>
<section>
<h6>Test Section</h6>
</section>
</div>
Hello正在div中显示并且正在分配空间但是内容不会影响高度(但是它显示在div中的dom树中)
请提出任何想法
答案 0 :(得分:0)
对于IE将<section>
视为块级元素,您需要html5 shiv hack:
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
http://code.google.com/p/html5shiv/
更多信息: