CSS高度塌陷问题与解决办法

问题描述:

在文档流中,父元素默认被子元素撑开(父多高子多高),一旦子浮动,脱离文档流,父无撑起元素便塌陷,父下的所有元素会上移。

(不推荐)可以将父高度写死避免塌陷,但高度写死后,父高度不能自动适应子高度的变化。

 <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>高度塌陷问题</title>
<style type="text/css">
.father{
border: 1px solid red;
}
.son{
width: 100px;
height: 100px;
background-color: greenyellow;
float: left;
/*设置浮动后由于子脱离文档流父子后重叠*/
}
.duiBi{
width: 1000px;
height: 100px;
background-color: pink;
}
</style>
</head>
<body>
<div class="father">
<div class="son">
</div>
</div>
<div class="duiBi">
</div>
</body>
</html>

解决方案一:

上一篇:Admob(6.12.x)符号未定义错误的解决方法(IOS)


下一篇:Login Verification CodeForces - 928A (实现)