利用伪元素清除浮动

  伪元素通过css来添加,不用于元素直接书写在html中

  伪元素    ::after    :after

  伪元素需要配合content属性使用

  为父元素添加以下几个属性,可以清除浮动:

    .类名:after {

      display: block;

       height: 0;

                  content: "";
                  visibility: hidden;
                  clear: both;
posted @ 2021-03-18 20:55  没有茅台喝啤酒也行  阅读(49)  评论(0)    收藏  举报