1. 父元素塌陷问题
解决办法:将父元素设置宽高
2. 同级元素被浮动影响
解决办法:受影响的元素增加 clear:both
3. 父元素塌陷的同时同级元素受到影响
解决办法:
1. 父元素设置 overflow:hidden; clear:both;
2. 伪对象办法
父元素::after {
content:'';
display:block;
clear: both;
}
解决办法:将父元素设置宽高
解决办法:受影响的元素增加 clear:both
解决办法:
1. 父元素设置 overflow:hidden; clear:both;
2. 伪对象办法
父元素::after {
content:'';
display:block;
clear: both;
}