byzhangxinxu from https://www.zhangxinxu.com/wordpress/?p=9404 This article is welcome to be shared and aggregated. There is no need to reprint the full text. Please respect copyright. The circle is so small. If you need it urgently, you can contact us for authorization. 1. Safari browser supports When 2. What is display:flow-root used for? Elements, whether inline or originally block-level, become block-level elements after Regarding BFC, you can refer to my previous classic article: "CSS in-depth understanding of fluid characteristics and multi-column adaptive layout under BFC characteristics". In addition to being used for layout, BFC can also clear floats and remove margin merging. Therefore, Using For example, in the following example, the container has an outline and the child elements are floated: <p><img src="mm.jpg"></p> p { outline: solid deepskyblue; } img { float: left; } The resulting contours are merged together, as shown below: At this point, as long as p { display: flow-root; } The effect is shown in the following screenshot: Similarly, the phenomenon of margin property merging can also be prevented using The HTML code is as follows: <div class="box"> <p>margin: 2em;</p> </div> <div class="box flow-root"> <p>margin: 2em;</p> </div> The CSS is as follows: .box { background-color: #f0f3f9; } .box p { outline: solid deepskyblue; margin: 2em; } .flow-root { display: flow-root; } As a result, the margin of the upper container element is penetrated, while the margin penetration of the lower container element is prevented because Both of the above examples have demos to experience. You can click here to see the demo of display:flowt-root: For example: <div class="box flow-root"> <img src="mm.jpg"> <p class="flow-root">Pinduoduo soared 7%, its market value exceeded US$70 billion, surpassing JD.com. Huang Zheng's personal wealth is also the third richest person in mainland China. </div> .box img { float: left; margin-right: 20px; } .box p { background-color: #f0f3f9; padding: 10px; } .flow-root { display: flow-root; } The real-time effect is as follows: Pinduoduo soared 7%, and its market value exceeded US$70 billion, surpassing JD.com. Huang Zheng's personal wealth ranks him third among the richest people in mainland China. 3. Conclusion Summarize the main points of this article display:flow Which box is rendered depends on the display type of the outer element. Either generates an inline formatting context or a block formatting context. If the element's external display type is inline or run-in, and the element participates in a block or inline formatting context, then the element behaves as an inline box, otherwise it behaves as a block container box. Depending on whether formatting context properties are included (such as The compatibility of I will introduce it in detail when it matures. This is the end of this article about mastering CSS display:flow-root declaration in one article. For more relevant CSS display:flow-root content, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope that everyone will support 123WORDPRESS.COM in the future! |
<<: Summary of the deployment of Tomcat cluster and Nginx load balancing based on Docker
>>: Detailed explanation of the use and underlying principles of MySQL table partitions
1. After installing the Windows version of Docker...
This article example shares the specific code of ...
MySQL batch insert problem When developing a proj...
Tutorial Series MySQL series: Basic concepts of M...
Table of contents Preface Source code Where do I ...
Preface In the process of writing code, we will i...
The garbled code problem is as follows: The reaso...
1. Using Selenium in Linux 1. Install Chrome Inst...
# contains a location information. The default anc...
1. v-on event monitoring To listen to DOM events,...
Generally speaking, it is unlikely that you will ...
When browser vendors bend the standards and take i...
First of all, the formation of web page style main...
Table of contents 1. Global Guard 1. Global front...
Preface MySQL is a high-speed, high-performance, ...