CSS about clearfix clearing floating method

高洛峰
Release: 2017-03-17 16:26:10
Original
1636 people have browsed it

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; }

Copy after login

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.

Copy after login

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:

   Demo  
  

Copy after login

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:

Copy after login

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%; }
Copy after login

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

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!