Little things you don't know about CSS floating
The previous words
FloatingThe earliest use comes from right ">, used for typesetting processing of text surrounding pictures. Nowadays, floating is a commonly used layout method in CSS. This article will introduce and sort out the floating content in detail.
Definition
float float
The floating element is separated from the ordinary flow, and then as specified Direction, move left or right, stop when hitting the parent boundary or another floating element
Value: left | right | none | inherit
Initial value: none
Apply to: all elements
Inheritance: None
[Note] If you float a non-replacement element, you must declare a width for the element, otherwise, according to CSS specification, the width of elements tends to 0
Features
[1] Floating flow
Elements in normal flow are arranged one after another; floating elements also constitute a floating flow
【2】Block-level box
The floating element itself will generate a block-level box, regardless of what the element itself is, so that the margins around the floating element will not be merged
[3] Wrapping
The containing block of a floating element refers to its nearest block-level ancestor element, and descendant floating elements should not exceed the top, left, and right boundaries of the containing block. If the height of the containing block is not set, and the containing block floats, the containing block will extend to include all its descendant floating elements; if the width of the containing block is not set, and the containing block floats, the width of the containing block will be stretched by the descending floating elements.
【4】Destructive
The floating element breaks away from the normal flow and destroys its own line boxAttribute, causing the height of the containing block element to collapse, causing the floating box to collapse The line box next to it is shortened to make room for the floating box, and the line box is rearranged around the floating box
Performance
[1] The left (or right) outer boundary of the floating element must be The right (left) outer bounds of the previous left-floated (or right-floated) element in the source document. Unless the top of the floated element that appears later is below the bottom of the floated element that appears first
[2] The right outer border of the left-floated element will not be to the right of the left outer border of the right-floated element to its right. The left outer border of a right-floated element will not be to the left of the right outer border of any left-floated element to its left
[3] If there is another floating element to the left (right) of a left (or right) floating element, the former The right outer boundary cannot be to the right (left) of the right (left) boundary of its containing block
[4] The left (or right) outer boundary of a floating element cannot exceed the left (or right) inner boundary of its containing block
[5]The top of a floating element cannot be higher than the inner top of its parent element. If a floated element is between two merged margins, place the floated element as if there were a block-level parent element between the two elements
[6] The top of the floated element cannot be higher than all previous floats The top of an element or block-level element is higher
[7] If a floated element appears before another element in the source document, the top of the floated element cannot be higher than the top of any line box containing the box generated by the element. High
[8] Floated elements must be placed as high as possible
[9] Left-floated elements must be as far to the left as possible, and right-floated elements must be as far to the right as possible. The higher the position, the farther it will float to the right or left
Overlap
There are two ways for a floating element to exceed the boundary of the parent element: one is that the width of the floating element is greater than the parent element The other way is to set negative margins. If a floating element has negative margins and the floating element overlaps a normal flow element
[1]When an inline box overlaps a floating element, its border, background, and content are all displayed on top of the floating element
【2】When the block box overlaps a floating element, its border and background are displayed under the floating element, and the content is displayed above the floating element
[Related recommendations]
1. Free css online video tutorial
3. php.cnDugujiujian( 2)-css video tutorial
The above is the detailed content of Little things you don't know about CSS floating. For more information, please follow other related articles on the PHP Chinese website!

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

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

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.

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

There are two ways to create a Bootstrap split line: using the tag, which creates a horizontal split line. Use the CSS border property to create custom style split lines.

To set up the Bootstrap framework, you need to follow these steps: 1. Reference the Bootstrap file via CDN; 2. Download and host the file on your own server; 3. Include the Bootstrap file in HTML; 4. Compile Sass/Less as needed; 5. Import a custom file (optional). Once setup is complete, you can use Bootstrap's grid systems, components, and styles to create responsive websites and applications.

There are several ways to insert images in Bootstrap: insert images directly, using the HTML img tag. With the Bootstrap image component, you can provide responsive images and more styles. Set the image size, use the img-fluid class to make the image adaptable. Set the border, using the img-bordered class. Set the rounded corners and use the img-rounded class. Set the shadow, use the shadow class. Resize and position the image, using CSS style. Using the background image, use the background-image CSS property.

How to use the Bootstrap button? Introduce Bootstrap CSS to create button elements and add Bootstrap button class to add button text

To adjust the size of elements in Bootstrap, you can use the dimension class, which includes: adjusting width: .col-, .w-, .mw-adjust height: .h-, .min-h-, .max-h-
