内容简介:这篇文章主要介绍了父div高度不能自适应子div高度的解决方案,需要的朋友可以参考下
复制代码 代码如下:
<div id="parent">
<div id="content"> </div>
</div>
当content内容多时,即使parent设置了高度100%或auto,在不同浏览器下还是不能完好的自动伸展。解决方案如下:
复制代码 代码如下:
<div id="parent">
<div id="content"></div>
<div style="font: 0px/0px sans-serif;clear: both;display: block"> </div>
</div>
在层的最下方产生一个高度为1的空格,可解除这个问题。
另外还有这样写的:<div style="height:1px; margin-top:-1px;clear:both;overflow:hidden;" />或者<br style="clear:both;" />。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- Android XML灵活布局之 EditText实现自适应高度同时限制最小和最大高度
- iOS-谈一谈自适应Cell的高度缓存
- iOS初级开发学习笔记:一个页面中自动计算cell的高度来自适应tableView的高度
- UITableViewCell含有WebView的自适应高度新解决方案
- 认知的高度 = 人生的高度
- html – 没有固定高度的滚动条/带滚动条的动态高度
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Approximation Algorithms
Vijay V. Vazirani / Springer / 2001-07-02 / USD 54.95
'This book covers the dominant theoretical approaches to the approximate solution of hard combinatorial optimization and enumeration problems. It contains elegant combinatorial theory, useful and inte......一起来看看 《Approximation Algorithms》 这本书的介绍吧!