码迷,mamicode.com
首页 > Web开发 > 详细

css清除浮动,清除浮动的几种方法

时间:2017-07-09 12:28:24      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:适应   containe   page   combox   order   高度   溢出   span   bsp   

2、清除浮动的方法:

(1)使用clear:both。如果我们明确的知道紧接着浮动元素后面的元素,可以使用这种方法来清除浮动。这种方

         法简单,容易使用,不需要hack,语义化也不错。

(2)空div方法。这个方法一般是不推荐使用的,虽然没有什么副作用的,但因为这个div纯粹是为了表现,没有语义。

(3)自定义一个 cf 类,对容器添加 cf 类可以清除浮动

.cf:before, .cf:after {
    content: ‘‘;
    display: block;
    clear: both;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

css清除浮动,清除浮动的几种方法

标签:适应   containe   page   combox   order   高度   溢出   span   bsp   

原文地址:http://www.cnblogs.com/cheer-up/p/7140626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!