什么是clearfix (一文搞清楚css清除浮动clearfix)


Posted in HTML / CSS onMay 21, 2023

 什么是 clearfix ?

clearfix 是一种 CSS 技巧,可以在不添加新的 html 标签的前提下,解决让父元素包含浮动的子元素的问题。这个技巧的版本是很多的,最流行的一个是 Micro Clearfix Hack 。这个也是 Bootstrap 采用的方案(可以 google 一下 “bootstrap clearfix” 来查看详情)。

Micro Clearfix Hack 的作者给出的原始方案,内容如下:

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}

但是我的习惯是支持到 IE9+ ,同时习惯了用 “ clearfix ” 作为 class 名,所有稍微修改后的版本如下:

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

百度用的代码

.clearfix:after{content:'\20';display:block;height:0;clear:both}
.clearfix{zoom:1}
.clear{clear:both;height:0;line-height:0;font-size:0;visibility:hidden;overflow:hidden}

三水点靠木用的

.clear{clear: both;overflow: hidden;line-height: 0;height: 0;zoom:1}
.clear:after {display: block; height: 0px; visibility: hidden; clear: both; content: ""}
.clearfix{ *zoom:1;}
.clearfix:before,	
.clearfix:after {content: ".";display: block;height: 0;overflow: hidden;visibility: hidden;}
.clearfix:after{clear: both}

用了这个方法很长时间之后,都觉得上面的代码就是天书,尤其是对 display: table 这一行不理解。其实,这些代码为的是解决两个实际中经常遇到,而且非常让人恼火的问题。问题搞清楚了,代码也就明白了。

自清除子元素浮动

  • 先说第一个问题和解决方案。

  • div 布局的一个非常让新手头疼的问题就是,如果一个父元素中包含若干个子元素,那么当给所有的子元素都设置了浮动( e.g float: left ),那么父元素的高度就会为0。

比如有这样的 html 代码:

<div class="container">
  <div class="item">1</div>
  <div class="item">2</div>
</div>

如果子元素没有浮动,那么显示是这样的:

什么是clearfix (一文搞清楚css清除浮动clearfix)

但是一旦所有子元素都浮动了,那么父元素的高度变为0,就成了这样的恶心效果:

什么是clearfix (一文搞清楚css清除浮动clearfix)

解决方法如下:

html 中添加 clearfix

<div class="container clearfix">
  <div class="item">1</div>
  <div class="item">2</div>
</div>

如果只是解决这个问题,那么下面的代码就够了。

.clearfix:after {
   content: " ";
   display: block;
   clear: both;
}

但是注意,文章开始的代码中使用 display: table 而不是这里的 display: block ,可以同样解决这个问题。但是,下面这个问题中使用 display: table 就是必须的了。

Margin Collapse 外边距重叠问题

再来说第二个问题。

外边距重叠也是一个很让人讨厌的问题。来描述一下症状。

container 之中包含一个 item 子元素,代码如下

<div class="container">
  <div class="item">
    item
  </div>
</div>

比如默认显示成这样:

什么是clearfix (一文搞清楚css清除浮动clearfix)

这时,我给 item 加了 margin-top: 30px ,本来这时候我期待的结果是,item 块本身应该距离 container 青色区域的上边界 30px 。同时一个副作用是青色区域应该拉高 30px 。但是实际上得到的却是下面的效果:

什么是clearfix (一文搞清楚css清除浮动clearfix)

造成这个的原因是,父子元素的 margin-top 是会重叠的,即使是像上面的情况中,父元素 container 自身 margin-top 为 0 的情况下也一样。这样造成的一个现象就是父元素“包不住”子元素的 margin-top ,溢出了。类似的问题也会发生在 margin-bottom 身上。

要解决这个问题,就要给 container 添加 clearfix ,html 代码如下

<div class="container clearfix">
  <div class="item">
    item
  </div>
</div>

如果只是针对这一种问题,最简单的 clearfix 实现是这样:

.clearfix:before,
.clearfix:after
{
 content: "   ";
 display: table;
}

注意,display: table 换成 dispaly: block 是不行的。

效果图

什么是clearfix (一文搞清楚css清除浮动clearfix)

完整测试代码脚本的家专门提供

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
<style>
.header{margin:0 auto;width:660px;color:white;font-size:18px;text-align:center;background-color:#fa1698;width:660px;height:70px;line-height:70px}
.container{margin:0 auto;width:660px;color:white;font-size:18px;text-align:center;background-color:#1a8081;}
.item{background-color:#fa653e;width:70px;height:70px;line-height:70px;margin-top: 30px}
.clearfix:before,
.clearfix:after
{
 content: " ";
 display: table;
}
.clearfix{zoom:1}
.clear{clear:both;height:0;line-height:0;font-size:0;visibility:hidden;overflow:hidden}
    </style>
</head>
<body style="text-align:center;">
<div class="header">
header
</div>
<div class="container clearfix">
  <div class="item">
    item
  </div>
</div>
</body>
</html>

当然,外边距重叠不局限于上面的父子元素之间,也会发生在兄弟元素之间,甚至是一个高度为 0 的元素,自己的上下边距也会重叠,这个就是 MDN Margin Collapse 文档上给出的全部三种情况,但是后两种在实际开发中不会带来很大麻烦,也不是咱们的 clearfix 方法所关心的。

结语

上面两个问题的解决代码合并到一起,就是文章最初 Peter 给出的 clearfix 代码了。 有了这个方法,当给子元素添加浮动或者是 margin 的时候,父元素的行为就非常符合正常的预期了,开发页面布局变得非常简单,所以 clearfix 方法对于按照 div 的 block 模型排版是非常有用的。

下面分享一段当前比较常用的代码

.clearfix:after{content:'\20';display:block;height:0;clear:both}
.clearfix{zoom:1}
.clear{clear:both;height:0;line-height:0;font-size:0;visibility:hidden;overflow:hidden}

但是,顺便提一下,未来 flexbox 会大行其道,flexbox 模型的特点是,不用 float ,并且子元素的 margin 也不会和父元素重叠。

到此这篇关于什么是clearfix (一文搞清楚css清除浮动clearfix)的文章就介绍到这了,更多相关什么是clearfix内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章,希望大家以后多多支持三水点靠木!

 
HTML / CSS 相关文章推荐
CSS3伪类选择器:nth-child()
Apr 02 HTML / CSS
Grid 宫格常用布局的实现
Jan 10 HTML / CSS
canvas粒子动画背景的实现示例
Sep 03 HTML / CSS
HTML5中的新元素介绍
Oct 17 HTML / CSS
HTML5的革新 结构之美
Jun 20 HTML / CSS
html5在移动端的屏幕适应问题示例探讨
Jun 15 HTML / CSS
详解HTML5中的拖放事件(Drag 和 drop)
Nov 14 HTML / CSS
微信小程序“圣诞帽”的实现思路详解
Dec 28 HTML / CSS
使用canvas实现黑客帝国数字雨效果
Jan 02 HTML / CSS
AmazeUI框架搭建的方法步骤(图文)
Aug 17 HTML / CSS
AmazeUI 按钮交互的实现示例
Aug 24 HTML / CSS
CSS3 实现NES游戏机的示例代码
Apr 21 HTML / CSS
css清除浮动clearfix:after的用法详解(附完整代码)
May 21 #HTML / CSS
浅谈css清除浮动(clearfix和clear)的用法
May 21 #HTML / CSS
clear 万能清除浮动(clearfix:after)
May 21 #HTML / CSS
css之clearfix的用法深入理解(必看篇)
May 21 #HTML / CSS
CSS中calc(100%-100px)不加空格不生效
May 07 #HTML / CSS
HTML中link标签属性的具体用法
May 07 #HTML / CSS
css弧边选项卡的项目实践
May 07 #HTML / CSS
You might like
thinkphp自定义权限管理之名称判断方法
2017/04/01 PHP
Laravel Intervention/image图片处理扩展包的安装、使用与可能遇到的坑详解
2017/11/14 PHP
PHP性能分析工具xhprof的安装使用与注意事项
2017/12/19 PHP
javascript 学习之旅 (3)
2009/02/05 Javascript
JavaScript 的方法重载效果
2009/08/07 Javascript
javascript中怎么做对象的类型判断
2013/11/11 Javascript
setInterval计时器不准的问题解决方法
2014/05/08 Javascript
Bootstrap基本组件学习笔记之input输入框组(9)
2016/12/07 Javascript
JS实现自动轮播图效果(自适应屏幕宽度+手机触屏滑动)
2017/06/19 Javascript
Vue路由前后端设计总结
2019/08/06 Javascript
layui table动态表头 改变表格头部 重新加载表格的方法
2019/09/21 Javascript
electron 安装,调试,打包的具体使用
2019/11/06 Javascript
antd Select下拉菜单动态添加option里的内容操作
2020/11/02 Javascript
[04:54]DOTA2 2017国际邀请赛:上届冠军WINGS采访短片
2017/08/09 DOTA
在Python的Flask框架下收发电子邮件的教程
2015/04/21 Python
利用Python批量生成任意尺寸的图片
2016/08/29 Python
Python 自动化表单提交实例代码
2017/06/08 Python
Python实现替换文件中指定内容的方法
2018/03/19 Python
python pandas中对Series数据进行轴向连接的实例
2018/06/08 Python
python 读写文件,按行修改文件的方法
2018/07/12 Python
不管你的Python报什么错,用这个模块就能正常运行
2018/09/14 Python
关于python中密码加盐的学习体会小结
2019/07/15 Python
python爬虫开发之PyQuery模块详细使用方法与实例全解
2020/03/09 Python
python复合条件下的字典排序
2020/12/18 Python
pycharm 的Structure界面设置操作
2021/02/05 Python
python实现MySQL指定表增量同步数据到clickhouse的脚本
2021/02/26 Python
塔吉特百货公司官网:Target
2017/04/27 全球购物
罗技美国官网:Logitech美国
2020/01/22 全球购物
90后毕业生的求职信范文
2013/09/21 职场文书
会计专业自我评价
2014/02/12 职场文书
离婚案件答辩状
2015/05/22 职场文书
少年雷锋观后感
2015/06/10 职场文书
2015年入党积极分子培养考察意见
2015/08/12 职场文书
诚实守信主题班会
2015/08/13 职场文书
利用python做表格数据处理
2021/04/13 Python
深入解析NumPy中的Broadcasting广播机制
2021/05/30 Python