前端-清除浮动的3种方式

1、父元素设置为 overflow:hidden

2、添加同级元素

<div class="clear"></div>

  

.clear{
    clear:both;
}

3、父元素:after

1 .parent:after{
2     width: 0;
3     height: 0;
4     clear:both;
5     content:' ';
6     display:block;
7     visibility:hidden;
8 }

 

posted on 2016-12-05 17:03  放羊的星星bky  阅读(130)  评论(0编辑  收藏  举报

导航