css别忘记清除浮动clear:both_经验交流
程序员文章站
2022-03-31 12:32:31
...
用空标签清除
.clr {clear: both;}
使用 overflow 属性
#layout {overflow:auto; zoom:1;}
使用 :after (非 IE 浏览器)
#layout:after{
display: block;
clear: both; content: "";
visibility:hidden; height: 0;
}
注:使用 :after 需要注意几点,设置高度为零(height: 0;);content 是必须的,但其值可以为空
.clr {clear: both;}
Left
Right
使用 overflow 属性
#layout {overflow:auto; zoom:1;}
Left
Right
使用 :after (非 IE 浏览器)
#layout:after{
display: block;
clear: both; content: "";
visibility:hidden; height: 0;
}
Left
Right
推荐阅读
-
css别忘记清除浮动clear:both
-
css别忘记清除浮动clear:both
-
CSS清除浮动常用方法小结 CSS clear both {overflow:auto;zoom:1;}
-
CSS清除浮动常用方法小结 CSS clear both {overflow:auto;zoom:1;}
-
【CSS】CSS清除浮动的几种方法- Clear floating
-
图文详解CSS clear:both清除浮动的运用
-
如何巧妙运用CSS clear:both清除浮动(附代码)
-
浅谈css清除浮动clearfix和clear的用法介绍
-
图文详解CSS clear:both清除浮动的运用
-
详解CSS中的clear清除浮动技巧