CSS中 三种方法清除浮动

xiaoxiao2021-02-28  45

清除浮动

父级上增加属性overflow:hidden在最后一个子元素的后面加一个空的div,给它样式属性 clear:both(不推荐)使用成熟的清浮动样式类,clearfix.clearfix:after,.clearfix:before{ content: "";display: table;} .clearfix:after{ clear:both;} .clearfix{zoom:1;}清除浮动的使用方法:.con2{... overflow:hidden} 或者 <div class="con2 clearfix">
转载请注明原文地址: https://www.6miu.com/read-2620368.html

最新回复(0)