父容器不设高度时,不随子元素高度撑开,并且margin不生效,那么推荐使用下面清除浮动方式:
.fatherDiv:after{ // 或者before,after和before元素为行内元素,清除浮动可达到目的
content: "";
display: block;
height: 0;
clear:both;
visibility: hidden;
}
父容器不设高度时,不随子元素高度撑开,并且margin不生效,那么推荐使用下面清除浮动方式:
.fatherDiv:after{ // 或者before,after和before元素为行内元素,清除浮动可达到目的
content: "";
display: block;
height: 0;
clear:both;
visibility: hidden;
}