欢迎各位兄弟 发布技术文章
这里的技术是共享的
子元素的高度是不确定的
可以JS设置父元素高度
<body> <<span class="<<span class=" hljs-keyword" style="box-sizing: border-box; font-weight: bold;">divid="father"> <<span class="hljs-keyword" style="box-sizing: border-box; font-weight: bold;">div id="son"></<span class="hljs-keyword" style="box-sizing: border-box; font-weight: bold;">div> </<span class="hljs-keyword" style="box-sizing: border-box; font-weight: bold;">div>hljs-keyword" style="box-sizing: border-box; font-weight: bold;">divid="father"> <<span class="hljs-keyword" style="box-sizing: border-box; font-weight: bold;">div id="son"></<span class="hljs-keyword" style="box-sizing: border-box; font-weight: bold;">div> </<span class="hljs-keyword" style="box-sizing: border-box; font-weight: bold;">div> </body>
JS设置父元素高度
var father = document.getElementById('father'); var son = document.getElementById('son'); father.style.height=son.offsetHeight+'px';
css给父元素设置overflow:hidden也可以包裹子元素
在子元素最后一个元素后面:添加一个空元素,设置style:clear:both
来自 http://www.cnblogs.com/oldZhangFeng/p/7241299.html