当前位置:Gxlcms > css > css别忘记清除浮动clear:both_经验交流

css别忘记清除浮动clear:both_经验交流

时间:2021-07-01 10:21:17 帮助过:43人阅读

用空标签清除
.clr {clear: both;}


Left




使用 overflow 属性
#layout {overflow:auto; zoom:1;}


Left



使用 :after (非 IE 浏览器)
#layout:after{
display: block;
clear: both; content: "";
visibility:hidden; height: 0;
}


Left


注:使用 :after 需要注意几点,设置高度为零(height: 0;);content 是必须的,但其值可以为空

人气教程排行