清除浮动与父类塌陷问题

1. 现象描述

<!DOCTYPE HTML>
<html lang="en-US">
 <head>
 <title></title>
 <meta charset="utf8">
 <style>
 .box{
 border: 1px solid red;
}
 .c1{
 width: 200px;
 height: 200px;
 background-color: #336699;
 float: left;
 clear: both;
 }
 .c2{
 width: 200px;
 height: 200px;
 background-color: orange;
 float: right;
 /* clear: both; */
 }
 .footer{
 width: 100%;
 height: 60px;
 background-color: yellowgreen;
 }
 </style>
 </head>
 <body>
 <div class="box">
 <div class="c1"></div>
 <div class="c2"></div>
 </div>
 <div class="footer"></div>
 </body>
</html>

发现box的高度为0,因为其内部的元素浮动,脱离了文档流,所以无法撑起父类div,且类为footer的div没有沿着C1、C2显示。

2. 清除浮动

为footer添加clear:both样式,清除两边浮动,效果如下

 .footer{
 width: 100%;
 height: 60px;
 background-color: yellowgreen;
 clear: both;
 }

3. 解决父类塌陷

两种方法解决:

1. 添加隐藏元素

.clearfix:after { /*在类名为“clearfix”的元素内最后⾯加⼊内容*/
 content: "."; /*内容为“.”就是⼀个英⽂的句号⽽已。也可以不 写。*/
 display: block; /*加⼊的这个元素转换为块级元素。*/
 clear: both; /*清除左右两边浮动。*/
 visibility: hidden; /*可⻅度设为隐藏。注意它和display:none;是有
区别的。*/
 /* visibility:hidden;仍然占据空间,只是看不到⽽已;*/
 line-height: 0; /*⾏⾼为0;*/
 height: 0; /*⾼度为0;*/
 font-size:0; /*字体⼤⼩为0;*/
}

整段代码就相当于在浮动元素后⾯跟了个宽⾼为0的空div,然后设定它clear:both来达到清除浮动 的效果。 之所以⽤它,是因为,你不必在html⽂件中写⼊⼤量⽆意义的空标签,⼜能清除浮动。

< div class = "head clearfix" > </ div >
2. 父类添加隐藏属性
 .box{
 border: 1px solid red;
 overflow: hidden;
 }

可以看到父类的红框被撑起来了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值