Non-orthogonal margins When margin is used, it will cause merging The following properties will prevent margin merging: border display: table display: flex The above content is the result of the detailed explanation below Blocking merger [Detailed explanation] /* CSS */ .box{ border:1px solid red; height: 100px; margin: 10px; /* Note: this is 10 pixels! */ } <!-- HTML --> <div class="box"></div> <div class="box"></div> <div class="box"></div> This is what it looks like in the browser: According to the rational number margin, the spacing between the top and bottom of the div should be 20px Solution 1: <!-- HTML --> <!-- css unchanged --> <div class="box"></div> <div style="border: 1px solid blue"></div> <!-- Newly added --> <div class="box"></div> <div style="border: 0.1px solid blue"></div> <!-- Newly added --> <div class="box"></div> <div class="box"></div> This is what it looks like in the browser: <!-- HTML --> <!-- css unchanged --> <!-- HTML --> <div class="box"></div> <div style="display: table"></div> <div class="box"></div> <div style="display: flex"></div> <div class="box"></div> <div class="box"></div> <!-- display:block / inline will not block merging, only table flex can --> This is what it looks like in the browser: Other Impacts display will affect the small dots of ul li position: absolute will affect display: inline position: fixed will affect transform float affects inline The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. |
<<: Detailed explanation of creating, calling and managing MySQL stored procedures
>>: Usage of the target attribute of the html tag a
User table, ID number must be unique, mobile phon...
Table of contents When to use Structural branches...
Those who have played King of Glory should be fam...
First, let me explain the application method. The...
Regarding the high availability solutions for Ora...
As the company's influence grows and its prod...
Copy code The code is as follows: <div id=&quo...
Preface I recently learned Linux, and then change...
1. Why do packaging? Facilitates overall code cal...
On the mobile side, flex layout is very useful. I...
Table of contents 1. Download MySQL 1.1 Download ...
introduce Vue Router is the official routing mana...
As shown below: #!/usr/bin/env python3.5 import p...
Table of contents 1. Initial SQL Preparation 2. M...
Set the background image for the table header. Yo...