Home > Article > Web Front-end > Summarize the correct usage of float and text wrapping issues
For web front-end developers, you must be familiar with float. You can't live without it, but you often endure the pain it brings you. Maybe you think it has a little bit of knowledge, but can you really control it? It is so familiar, but it often becomes unrecognizable to you and seems so strange that you think it is heart-breaking and outrageous. Today, the young uncle will take you to get to know this familiar and strange friend again. The original design intention of float was to achieve a mixed arrangement of images and text, so that the text could surround the image. Today's usage is basically to achieve horizontal layout. Although it is a "misuse", it can often achieve the effect we want. Most people know how to use float, but not everyone knows the principle and original design intention of float. Let's take a look at some characteristics of float: 1. Destructiveness The destructiveness of float means: the element set to float will break away from the document flow, causing its parent element to "collapse". Yes, this is its destruction. sex. Why does the collapse of the parent element occur? The reason is very simple, because the original intention of float design is to achieve the text wrapping effect. If the parent element does not collapse, then
1. Detailed explanation of the usage of float that you don’t know
Introduction: For web front-end developers, you must be familiar with float. You can't live without it, but you often endure the pain it brings you. Maybe you think it has a little bit of knowledge, but can you really control it? It is so familiar, but it often becomes unrecognizable to you and seems so strange that you think it is heart-breaking and outrageous. Today, the young uncle will take you to get to know this familiar and strange friend again. The original design intention of float was to achieve a mixed arrangement of images and text, so that the text could surround the image. Today's usage is basically to achieve horizontal...
2. The correct usage of float, 90% of people use it wrong
Introduction: For web front-end developers, you must be familiar with float. You can't live without it, but you often endure the pain it brings you. Maybe you think it has a little bit of knowledge, but can you really control it? It is so familiar, but it often becomes unrecognizable to you and seems so strange that you think it is heart-breaking and outrageous. Today, the young uncle will take you to get to know this familiar and strange friend again. The original design intention of float was to achieve a mixed arrangement of images and text, so that the text could surround the image. Today's usage is basically to achieve horizontal...
3. Use CSS to achieve text wrapping image effect
Introduction: This article mainly introduces the problems and solutions encountered in CSS text wrapping images in detail. Interested friends can refer to it
4. Why floating can realize text wrapping around images without overlapping
Introduction: Let’s look at the chapter on illustrated CSS today , although it mainly talks about the use of nth-of-type selector, but I paid attention to the layout of the page, as follows:
5. CSS text surrounding the image, Image-in-text effect_html/css_WEB-ITnose
Introduction: CSS text surrounds images, image-in-text effect
6. How to wrap css text around images
Introduction: css text around images--Problems encountered and solutions-Grimace
7. Code to use CSS to solve the problem of text wrapping around images_Experience exchange
Introduction: Code for using CSS to solve the problem of text wrapping around images
[Related Q&A recommendations]:
ios - float retains two decimal places
ios - json How to deal with the extra decimal places when parsing the float type?
java float to double implicit conversion precision is lost
The above is the detailed content of Summarize the correct usage of float and text wrapping issues. For more information, please follow other related articles on the PHP Chinese website!