博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
让div自动适应内容的高度
阅读量:5833 次
发布时间:2019-06-18

本文共 639 字,大约阅读时间需要 2 分钟。

我们看下面的代码:

<div id="main">
<div id="content"></div>
</div>
  当Content内容多时,即使main设置了高度100%或auto。在不同浏览器下还是不能完好的自动伸展。内容的高度比较高了,但容器main的高度还是不能撑开。
  我们可以通过三种方法来解决这个问题。
  一,增加一个清除浮动,让父容器知道高度。请注意,清除浮动的容器中有一个空格。
<div id="main"> 
<div id="content"></div> 
<div style="font: 0px/0px sans-serif;clear: both;display: block"> </div>
</div> 
  二,增加一个容器,在代码中存在,但在视觉中不可见。
<div id="main"> 
<div id="content"></div> 
<div style="height:1px; margin-top:-1px;clear: both;overflow:hidden;"></div>
</div> 
  三,增加一个BR并设置样式为clear:both。
<div id="main"> 
<div id="content"></div> 
<br style="clear:both;" />
</div>

转载于:https://www.cnblogs.com/dcj890828/articles/5147038.html

你可能感兴趣的文章
WindowManager.LayoutParams 详解
查看>>
find的命令的使用和文件名的后缀
查看>>
Android的Aidl安装方法
查看>>
Linux中rc的含义
查看>>
Golang 使用 Beego 与 Mgo 开发的示例程序
查看>>
asp.net怎样在URL中使用中文、空格、特殊字符
查看>>
路由器发布服务器
查看>>
实现跨交换机VLAN间的通信
查看>>
python例子
查看>>
环境变量(总结)
查看>>
ios之UILabel
查看>>
Java基础之String,StringBuilder,StringBuffer
查看>>
1月9日学习内容整理:爬虫基本原理
查看>>
安卓中数据库的搭建与使用
查看>>
AT3908 Two Integers
查看>>
C++ 0X 新特性实例(比较常用的) (转)
查看>>
node生成自定义命令(yargs/commander)
查看>>
.NET 设计规范--.NET约定、惯用法与模式-2.框架设计基础
查看>>
win7 64位+Oracle 11g 64位下使用 PL/SQL Developer 的解决办法
查看>>
BZOJ1997:[HNOI2010]PLANAR——题解
查看>>