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
How much specificity do @rules have, like @keyframes and @media?Apr 18, 2025 am 11:34 AMI got this question the other day. My first thought is: weird question! Specificity is about selectors, and at-rules are not selectors, so... irrelevant?
Can you nest @media and @support queries?Apr 18, 2025 am 11:32 AMYes, you can, and it doesn't really matter in what order. A CSS preprocessor is not required. It works in regular CSS.
Quick Gulp Cache BustingApr 18, 2025 am 11:23 AMYou should for sure be setting far-out cache headers on your assets like CSS and JavaScript (and images and fonts and whatever else). That tells the browser
In Search of a Stack That Monitors the Quality and Complexity of CSSApr 18, 2025 am 11:22 AMMany developers write about how to maintain a CSS codebase, yet not a lot of them write about how they measure the quality of that codebase. Sure, we have
Datalist is for suggesting values without enforcing valuesApr 18, 2025 am 11:08 AMHave you ever had a form that needed to accept a short, arbitrary bit of text? Like a name or whatever. That's exactly what is for. There are lots of
Front Conference in ZürichApr 18, 2025 am 11:03 AMI'm so excited to be heading to Zürich, Switzerland for Front Conference (Love that name and URL!). I've never been to Switzerland before, so I'm excited
Building a Full-Stack Serverless Application with Cloudflare WorkersApr 18, 2025 am 10:58 AMOne of my favorite developments in software development has been the advent of serverless. As a developer who has a tendency to get bogged down in the details
Creating Dynamic Routes in a Nuxt ApplicationApr 18, 2025 am 10:53 AMIn this post, we’ll be using an ecommerce store demo I built and deployed to Netlify to show how we can make dynamic routes for incoming data. It’s a fairly


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version
Recommended: Win version, supports code prompts!

SublimeText3 Mac version
God-level code editing software (SublimeText3)






