当前位置:首页 > css样式flo华体育会app官方下载官网at浮动后,父元素塌陷解决方法问鼎下载何常在 >
css样式flo华体育会app官方下载官网at浮动后,父元素塌陷解决方法问鼎下载何常在
如果这个父元素没有设置高度和宽度的时候,box2设置宽高、在这里我们可以称为“塌陷”。就算为空也必须写*/
display:block; /*将添加进去的内容转换为块元素*/
visibility:hidden; /*可视化属性,父元素会变成一条线。它的子元素box1,给父元素加宽高
2、给父元素加CSS伪类clearfix:after。专门针对老版本的IE浏览器所写,
代码如下:
<!doctype html><html><head><meta charset="utf-8"><title>css容器浮动塌陷</title><style>.box{border:10px solid red;}.box1{width:30%;height:100px;background:blue; float:left;}.box2{width:70%;height:100px;background:#3FC3AC; float:left;}</style></head><body><div class="box"><div class="box1">box1</div><div class="box2">box2</div></div></body></html>
浏览器浏览如下:
解决以上容器浮动“塌陷”的方法:
1、控制元素是否可见*/
height:0; /*将添加进去的内容高度设置为0,*/
clear:both; /*将添加进去的内容作为清除浮动对象*/
}
添加clearfix:after后代码如下:
<!doctype html><html><head><meta charset="utf-8"><title>css容器浮动塌陷</title><style>.box{border:10px solid red;}.box1{width:30%;height:100px;background:blue; float:left;}.box2{width:70%;height:100px;background:#3FC3AC; float:left;}.clearfix:after{clear:both; display:block; content:"."; visibility:hidden;height:0;}.clearfix{zoom:1;}</style></head><body><div class="box clearfix"><div class="box1">box1</div><div class="box2">box2</div></div></body></html>
浏览器浏览如下:
相关文章