search
HomeWeb Front-endCSS TutorialCSS about clearfix clearing floating method
CSS about clearfix clearing floating methodMar 17, 2017 pm 04:26 PM
cssclear float

1. What is .clearfix

As long as you search for "css clear float" on Google or Baidu, you will find that many websites talk about "when the box clears internal floats" You can use .clearfix".

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
}
.clearfix {
  zoom: 1;
}<p class="clearfix">
  <p class="floated"></p>
</p>

The above code is the definition and application of .clearfix. Let’s briefly talk about the principle of .clearfix:

1. In IE6 and 7, zoom: 1 will trigger hasLayout, thus making the element Close the inner float.

2. Under standard browsers, the .clearfix:after pseudo-class will insert a clear: both block-level element after the element applied to .clearfix, thereby clearing the float.

<p>
  <p class="floated"></p>
</p>
<p style="clear: both"></p>

2. The disadvantages of .clearfix

As you can see in the above code, leaving aside IE6 and 7, .clearfix is ​​inserted under a standard browser An element with clear: both is added, which is likely to clear unnecessary floats. To illustrate with an example:

<!DOCTYPE html>
<html>
<head>
  <title>Demo</title>
  <style type="text/css">
    html, body { padding: 0; margin: 0; }
    ul { margin: 0; padding: 0; } 
  
    .clearfix:after {
      content: " ";
      display: block;
      clear: both;
      height: 0;
    }
    .clearfix {
      zoom: 1;
    }
  
    .left-col {
      background: red;      float: left;
      width: 100px;
      height: 300px;
    }
    .right-col {
      margin-left: 100px;
    }
    .menu {
      border: 1px solid #000;
    }
    .menu li {      float: left;
      display: block;
      padding: 0 1em;
      margin: 0 1em 0 0;
      background: #ccc;
    }
    .placeholder {
      background: yellow;
      height: 400px;
    }  </style>
</head>
<body>
  <p class="left-col">
  </p>
  <p class="right-col">
    <ul class="menu">
      <li>Menu Item</li>
      <li>Menu Item</li>
      <li>Menu Item</li>
      <li>Menu Item</li>
      <li>Menu Item</li>
      <li>Menu Item</li>
    </ul>
    <p class="placeholder"></p>
  </p>
</body>
</html>

The above code constitutes a two-column layout page. Note that the .menu menu has a border, but because the li element of the .menu floats left, the .menu has no height, so you can use .clearfix to clear the floating content inside the .menu. The code is as follows:

<ul class="menu clearfix">
  <li>Menu Item</li>
  <li>Menu Item</li>
  <li>Menu Item</li>
  <li>Menu Item</li>
  <li>Menu Item</li>
  <li>Menu Item</li>
</ul>

But after applying .clearfix, the page becomes very messy under the standard browser. This is because .clearfix:after also clears the float of .left-col.

3. Reconstruct .clearfix

After encountering the above error, analyze whether there is any other method besides .clearfix:after. Clear the float inside the element. The answer is yes. In the article Block Formatting Contexts in vernacular, it is mentioned that the elements that constitute the Block Formatting Context can clear the floating of internal elements. Then just make .clearfix form a Block Formatting Context. There are several methods to construct Block Formatting Context:

  • The value of float is not none.

  • The value of overflow is not visible.

  • The value of display is any one of table-cell, table-caption, and inline-block.

  • The value of position is not relative or static.

Obviously, float and position are not suitable for our needs. Then you can only choose one from overflow or display. Because the menu that applies .clearfix and .menu is most likely to be multi-level, overflow: hidden or overflow: auto does not meet the needs (it will hide the drop-down menu or display the scroll bar), so you can only use display Take action.

We can set the display value of .clearfix to any one of table-cell, table-caption, and inline-block, but display: inline-block will produce redundant blanks, so it is also excluded. The only ones left are table-cell and table-caption. In order to ensure compatibility, you can use display: table to make .clearfix form a Block Formatting Context, because display: table will generate some anonymous boxes. One of these anonymous boxes (the display value is table-cell) will form a Block Formatting Context. In this way, our new .clearfix will close the float of the inner element. Below is the .clearfix after refactoring.

.clearfix {
  zoom: 1;
  display: table;
  width: 100%;
}

Four, summary

Under IE6 and 7, as long as the element that triggers hasLayout can clear the internal float. There are many ways to clear internal floats of elements under standard browsers. Except for .clearfix:after, the other methods are nothing more than generating a new Block Formatting Context to achieve the purpose. If you can use which method under what conditions, I think this is enough...

For more CSS related articles about the clearfix clearing floating method, please pay attention to the PHP Chinese website!

Related articles:

In-depth analysis of clearfix to clear floats

In-depth understanding of the usage of clearfix in css

A brief discussion on the usage of css clearfix and clear

The most comprehensive css clearfix method to clear floats

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
利用CSS怎么创建渐变色边框?5种方法分享利用CSS怎么创建渐变色边框?5种方法分享Oct 13, 2021 am 10:19 AM

利用CSS怎么创建渐变色边框?下面本篇文章给大家分享CSS实现渐变色边框的5种方法,希望对大家有所帮助!

css ul标签怎么去掉圆点css ul标签怎么去掉圆点Apr 25, 2022 pm 05:55 PM

在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

css与xml的区别是什么css与xml的区别是什么Apr 24, 2022 am 11:21 AM

区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

css3怎么实现鼠标隐藏效果css3怎么实现鼠标隐藏效果Apr 27, 2022 pm 05:20 PM

在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

rtl在css是什么意思rtl在css是什么意思Apr 24, 2022 am 11:07 AM

在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

css怎么实现英文小写转为大写css怎么实现英文小写转为大写Apr 25, 2022 pm 06:35 PM

转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。

css怎么设置i不是斜体css怎么设置i不是斜体Apr 20, 2022 am 10:36 AM

在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

怎么设置rotate在css3的旋转中心点怎么设置rotate在css3的旋转中心点Apr 24, 2022 am 10:50 AM

在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft