清除浮动的方法

195 阅读1分钟

方法一、clear清除浮动

clear 清除浮动的方法,添加一个空的div标签清除浮动

.clearfix {
    clear: both;
    height: 0;
    overflow: hidden;
}

方法二、使用伪类的方法清除浮动

div:after {
    content: '';
    clear: both;
    display: block;
    height:0;
    visibility: hidden;
}