清楚浮动的几种方式

1、添加一个div,然后给这个div设置css clear:both

    缺点:无形中添加了多余的标签,造成了代码的冗余

2】给父元素上添加overflow:hidden

3】添加伪类after     、、、、推荐使用

  .main:after{

content:' ';

clear:both;

display:table

}

posted on 2020-04-28 02:48  三胖儿逆袭  阅读(141)  评论(0编辑  收藏  举报

导航