A brief discussion on CSS blocking merging and other effects

A brief discussion on CSS blocking merging and other effects

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

Recommend

mysql implements the operation of setting multiple primary keys

User table, ID number must be unique, mobile phon...

Implementation example of JS native double-column shuttle selection box

Table of contents When to use Structural branches...

How to implement the King of Glory matching personnel loading page with CSS3

Those who have played King of Glory should be fam...

A brief analysis of the count tracking of a request in nginx

First, let me explain the application method. The...

Comparative Analysis of High Availability Solutions of Oracle and MySQL

Regarding the high availability solutions for Ora...

A few experiences in self-cultivation of artists

As the company's influence grows and its prod...

Use js in html to get the local system time

Copy code The code is as follows: <div id=&quo...

Axios secondary encapsulation example Demo in the project

1. Why do packaging? Facilitates overall code cal...

Installation and configuration method of vue-route routing management

introduce Vue Router is the official routing mana...

MySQL inspection script (must read)

As shown below: #!/usr/bin/env python3.5 import p...

How to view the execution time of SQL statements in MySQL

Table of contents 1. Initial SQL Preparation 2. M...

HTML table markup tutorial (37): background image attribute BACKGROUND

Set the background image for the table header. Yo...