Web Front-end
CSS Tutorial
A brief discussion on the usage of css to clear floating clearfix and clearA brief discussion on the usage of css to clear floating clearfix and clear
The following editor will bring you a brief discussion on the usage of CSS clear float (clearfix and clear). The editor thinks it is quite good, so I will share it with you now and give it as a reference for everyone. Let’s follow the editor and take a look.
This article mainly explains how to use clearfix and clear in html, for those children who have just started to understand css. I won’t write about the styles of clearfix and clear here.
Let’s talk about the usage of these two classes. First, let’s look at an example:
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8"/>
<title>如何在html中使用clearfix和clear</title>
<link rel="stylesheet" type="text/css" href="/css/base.css" media="all"/>
<style type="text/css">
.fl{float:left;}
.demo{background:#ccc;}
.item1{background:#f90;height:100px;width:100px;}
.item2{background:#fc0;height:200px;width:100px;}
</style>
</head>
<body>
<p class="demo">
<p class="fl item1"></p>
<p class="fl item2"></p>
</p>
</body>
</html>We all know that using floats will cause many unknown problems. Through the above examples we can It is found that the height of class="demo" is not stretched by the p inside. This is because the p inside floats and breaks away from the document. Because the demo itself has no height, we cannot see its gray background. Of course, just give the demo a height, but this deviates from the purpose of this article (sometimes we want the height of the outer p to be determined by the content inside).
Since it is a problem caused by floating, then just clear the floating. I believe experts have many methods to clear floating, such as overflow:hidden. Below I will introduce using clearfix and clear to clear floats.
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8"/>
<title>如何在html中使用clearfix和clear</title>
<link rel="stylesheet" type="text/css" href="/css/base.css" media="all"/>
<style type="text/css">
.fl{float:left;}
.demo{background:#ccc;}
.item1{background:#f90;height:100px;width:100px;}
.item2{background:#fc0;height:200px;width:100px;}
</style>
</head>
<body>
<h2 id="用-nbsp-clear-nbsp-清除浮动">用 clear 清除浮动</h2>
<p class="demo">
<p class="fl item1"></p>
<p class="fl item2"></p>
<p class="clear"></p>
</p>
<h2 id="用-nbsp-clearfix-nbsp-清除浮动">用 clearfix 清除浮动</h2>
<p class="clearfix demo">
<p class="fl item1"></p>
<p class="fl item2"></p>
</p>
</body>
</html>We found that clearfix is mainly used on the parent layer of the floating layer, while clear is mainly used between the floating layer and the floating layer, and is at the same level as the floating layer. If you want To expand the height of the parent layer, clear should be placed at the end.
It is difficult to say which of these two methods is better. We can only say that specific needs should be treated in detail.
Related articles:
In-depth analysis of clearfix to clear floats
In-depth understanding of the usage of clearfix in css
CSS about clearfix clearing floating method
The most comprehensive CSS clearfix clearing floating method
The above is the detailed content of A brief discussion on the usage of css to clear floating clearfix and clear. For more information, please follow other related articles on the PHP Chinese website!
Two Images and an API: Everything We Need for Recoloring ProductsApr 15, 2025 am 11:27 AMI recently found a solution to dynamically update the color of any product image. So with just one of a product, we can colorize it in different ways to show
Weekly Platform News: Impact of Third-Party Code, Passive Mixed Content, Countries with the Slowest ConnectionsApr 15, 2025 am 11:19 AMIn this week's roundup, Lighthouse sheds light on third-party scripts, insecure resources will get blocked on secure sites, and many country connection speeds
Options for Hosting Your Own Non-JavaScript-Based AnalyticsApr 15, 2025 am 11:09 AMThere are loads of analytics platforms to help you track visitor and usage data on your sites. Perhaps most notably Google Analytics, which is widely used
It's All In the Head: Managing the Document Head of a React Powered Site With React HelmetApr 15, 2025 am 11:01 AMThe document head might not be the most glamorous part of a website, but what goes into it is arguably just as important to the success of your website as its
What is super() in JavaScript?Apr 15, 2025 am 10:59 AMWhat's happening when you see some JavaScript that calls super()?.In a child class, you use super() to call its parent’s constructor and super. to access its
Comparing the Different Types of Native JavaScript PopupsApr 15, 2025 am 10:48 AMJavaScript has a variety of built-in popup APIs that display special UI for user interaction. Famously:
Why Are Accessible Websites so Hard to Build?Apr 15, 2025 am 10:45 AMI was chatting with some front-end folks the other day about why so many companies struggle at making accessible websites. Why are accessible websites so hard
The `hidden` Attribute is Visibly WeakApr 15, 2025 am 10:43 AMThere is an HTML attribute that does exactly what you think it should do:


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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

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

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






