css清除浮动的方法

css清除浮动

  1. 父元素添加overflow: hidden;
  2. 使用父元素after伪类
&:after {
        content: '';
        height: 0;
        line-height: 0;
        display: block;
        visibility: hidden;
        clear: both;
    }

3.使用属性clear:both;清除浮动,这种需要再父元素最后写一个冗余元素添加clear:both属性

个人感觉使用after伪类的方法最好使

上一篇:Linux下Qt的安装与配置


下一篇:rabbitmqctl: Error unable to connect to node 'rabbit@xxxxx' nodedown