清除浮动
清除掉元素float属性
清除浮动指清除掉元素float属性。
清除浮动介绍
假设了有三个盒子对象,一个父级里包含了两个
子级
,子级一个使用了float:left属性,另外一个子级使用float:right属性。同时设置div css border,父级css边框颜色为红色,两个子级边框颜色为蓝色;父级CSS背景样式为黄色,两个子级背景为白色;父级css width宽度为400px,两个子级css宽度均为180px,两个子级再设置相同高度100px,父级css height高度暂不设置(通常为实际css布局时候这样父级都不设置高度,而高度是随内容增加自适应高度)。
清除浮动方法
给父级也加浮动
无标题文档
.box{ width:300px;margin:0 auto;border:10px solid #000; float:left;}
.div{ width:200px;height:200px;background:red;float:left;}
/*
清浮动
1.给父级也加浮动(不居中了)
*/
给父级加display:inline-block;
无标题文档
.box{ width:300px;margin:0 auto;border:10px solid #000; display:inline-block;}
.div{ width:200px;height:200px;background:red;float:left;}
/*
清浮动
1.给父级也加浮动
2.给父级加display:inline-block
*/
.clear{ height:0px;font-size:0;clear:both;}但是在ie6下,块元素有最小高度,即当height<19px时,默认为19px,解决方法:font-size:0;或overflow:hidden;
无标题文档
.box{ width:300px;margin:0 auto;border:10px solid #000;}
.div{ width:200px;height:200px;background:red;float:left;}
.clear{ height:0px;font-size:0;clear:both;}
/*
清浮动
1.给父级也加浮动
2.给父级加display:inline-block
.clear{ height:0px;font-size:0;clear:both;}
*/
无标题文档
.box{ width:300px;margin:0 auto;border:10px solid #000;}
.div{ width:200px;height:200px;background:red;float:left;}
/*
清浮动
1.给父级也加浮动
2.给父级加display:inline-block
.clear{ height:0px;font-size:0;clear:both;}
*/
给浮动元素父级加{zoom:1;}
无标题文档
.box{margin:0 auto;border:10px solid #000;}
.div{ width:200px;height:200px;background:red;float:left;}
.clear{zoom:1;}
/*
清浮动
1.给父级也加浮动
2.给父级加display:inline-block
.clear{ height:0px;font-size:0;clear:both;}
5. 给浮动元素的父级加{zoom:1;}
**在IE6,7下浮动元素的父级有宽度就不用清浮动
haslayout 根据元素内容的大小 或者父级的父级的大小来重新的计算元素的宽高
display: inline-block
height: (任何值除了auto)
float: (left 或 right)
width: (任何值除了auto)
zoom: (除 normal 外任意值)
*/
给浮动元素父级加overflow:hidden;
无标题文档
.box{ width:300px;border:1px solid #000;overflow:hidden;}
.div1{ width:260px;height:400px;background:Red;float:left;}
参考资料
CSS清除浮动方法集合
.DIVCSS5.
html清除浮动的6种方法示例
.脚本之家.
最新修订时间:2024-01-05 10:09
条目作者
小编
资深百科编辑
目录
概述
清除浮动介绍
清除浮动方法
参考资料
Copyright©2024
闽ICP备2024072939号-1