Home Web Front-end HTML Tutorial Why does the ordinary document flow give way to a floating box?_html/css_WEB-ITnose

Why does the ordinary document flow give way to a floating box?_html/css_WEB-ITnose

Jun 24, 2016 pm 12:08 PM

According to the information,
"A floating box can move left or right until its outer edge touches the containing box or the border of another floating box. Since the floating box is not in the normal flow of the document, So the block box in the normal flow of the document behaves as if the float box does not exist. "
The information also says, "In the following paragraph, we add an image with the style float:right. The image will float to the right of the paragraph. "

I see that the text is surrounding the image. This confused me. I asked others to give way to him. How could I still say "act like he doesn't exist"?
My question is,
Q: Since the CSS floating box is not in the normal flow, why does the floating box not cover the content below like the upper layer, but let the normal document flow indent it? ?



Reply to discussion (solution)

Don’t quite understand what it means? ? ?

This is a bit like taking a photo. The person in front blocks you, but you still want to show your face.

Floating is out of the normal document flow, just like the text wrapping display in word

This is a bit like taking a photo. The person in front blocks you, but you still want to show your face.

Yes, my understanding is that layers are equivalent to the same. Only the head can be exposed, the rest must be covered.
But actually not!

Floating out of the normal document flow, just like the text wrapping display in word
What else is it called out of the way? Isn’t it still in the document flow? For example, if there is no floating setting for the pictures, then the pictures and text are arranged vertically one after another. What kind of concept is this "detachment"?

Look at the line boxing and cleaning below:
http://www.w3cschool.cn/css_positioning_floating.html

Quoting the reply from acesidonu on the 2nd floor:


This is a bit like taking a photo. The person in front blocks you, but you still want to show your face.

Yes, my understanding is that layers are equivalent to the same. Only the head can be exposed, the rest must be covered.
But actually not!


Quoting the reply from li649905271 on the 3rd floor:

Floating is separated from the normal document flow, just like the text wrapping display in word

What else is it called separated? Isn't it still in the document flow? For example, if there is no floating setting for the picture,...

What I mean by breaking away from the document flow is from the perspective of layout.

Don’t get hung up on this. In fact, "breaking away from the document flow" does not necessarily benefit other people. The elements in the document flow have no effect. This is a matter of understanding the concept. It would be great if you change your understanding of "out of the document flow"

In addition, the floating mechanism is like this: after the element floats, it follows The subsequent block box (set to box A) behaves as if the floating box does not exist. However, if there is a "line box" in the block box A [note the concept of "line box" Different from the concept of "inline box")], then the line box will be shortened to avoid being covered by the floating box. That is to say, for the A box, it is actually still covered by the floating box, but in the A box The "line box" in the content area is shortened and is not formatted from the boundary of the content, achieving the effect of a surrounding floating box. The author can try this, set the width and height of the A frame to fixed values, or be larger than the floating frame, or smaller than the floating frame, and you can clearly see this coverage effect.
For more detailed knowledge, I recommend two websites to you:
1. http://www.w3schools.com, this is the English website of w3school, and I feel that the explanation is clearer than the Chinese website;
2. http ://www.w3.org/TR/2011/REC-CSS2-20110607/, this is the CSS2.1 specification in the W3C official website, focus on parts 9 and 10.

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

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Is HTML easy to learn for beginners? Is HTML easy to learn for beginners? Apr 07, 2025 am 12:11 AM

HTML is suitable for beginners because it is simple and easy to learn and can quickly see results. 1) The learning curve of HTML is smooth and easy to get started. 2) Just master the basic tags to start creating web pages. 3) High flexibility and can be used in combination with CSS and JavaScript. 4) Rich learning resources and modern tools support the learning process.

The Roles of HTML, CSS, and JavaScript: Core Responsibilities The Roles of HTML, CSS, and JavaScript: Core Responsibilities Apr 08, 2025 pm 07:05 PM

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

What is an example of a starting tag in HTML? What is an example of a starting tag in HTML? Apr 06, 2025 am 12:04 AM

AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.

Understanding HTML, CSS, and JavaScript: A Beginner's Guide Understanding HTML, CSS, and JavaScript: A Beginner's Guide Apr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Apr 04, 2025 pm 11:54 PM

GiteePages static website deployment failed: 404 error troubleshooting and resolution when using Gitee...

How to implement adaptive layout of Y-axis position in web annotation? How to implement adaptive layout of Y-axis position in web annotation? Apr 04, 2025 pm 11:30 PM

The Y-axis position adaptive algorithm for web annotation function This article will explore how to implement annotation functions similar to Word documents, especially how to deal with the interval between annotations...

How to use CSS3 and JavaScript to achieve the effect of scattering and enlarging the surrounding pictures after clicking? How to use CSS3 and JavaScript to achieve the effect of scattering and enlarging the surrounding pictures after clicking? Apr 05, 2025 am 06:15 AM

To achieve the effect of scattering and enlarging the surrounding images after clicking on the image, many web designs need to achieve an interactive effect: click on a certain image to make the surrounding...

Why do you need to call Vue.use(VueRouter) in the index.js file under the router folder? Why do you need to call Vue.use(VueRouter) in the index.js file under the router folder? Apr 05, 2025 pm 01:03 PM

The necessity of registering VueRouter in the index.js file under the router folder When developing Vue applications, you often encounter problems with routing configuration. Special...

See all articles