Solve the problem of margin merging

Solve the problem of margin merging

1. Merge the margins of sibling elements

The effect is as follows: (the spacing between the two is 100px, not 150px)

2. Merge the outer margins of nested elements

For two nested elements, if there is no content in the parent element or the content is behind the child element and there is no top padding and border, the top margin of the parent element will be merged with the top margin of the child element, and the value will be the largest top margin, which will be used as the top margin of the parent element. Collapse occurs even if the parent element's top margin is 0. (collapse only occurs in the vertical direction)

Solution:

1. Define a 1-pixel top border for the parent element.

2. Define a 1-pixel top padding for the parent element.

3. Add overflow:hidden to the parent element;

Note that the first and second methods are not good and will increase the size of the box. The third method hides the overflowing content, which neither increases the size of the box nor affects the content.

Summarize

The above is what I introduced to you about solving the problem of margin merging. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

<<:  Faint: "Use web2.0 to create standard-compliant pages"

>>:  Detailed explanation of MySQL transaction isolation level and MVCC

Blog    

Recommend

Ubuntu20.04 VNC installation and configuration implementation

VNC is a remote desktop protocol. Follow the inst...

Summary of MySQL development standards and usage skills

1. Naming conventions 1. Database names, table na...

Summary of ways to implement single sign-on in Vue

The project has been suspended recently, and the ...

CocosCreator Typescript makes Tetris game

Table of contents 1. Introduction 2. Several key ...

A brief discussion on logic extraction and field display of Vue3 in projects

Table of contents Logical Layering Separate busin...

Hbase installation and configuration tutorial under Linux

Table of contents Hbase installation and configur...

Spring Boot layered packaging Docker image practice and analysis (recommended)

Table of contents 1. Prepare the springboot proje...

How to lock a virtual console session on Linux

When you are working on a shared system, you prob...

CocosCreator Universal Framework Design Network

Table of contents Preface Using websocket Constru...

Realize breadcrumb function based on vue-router's matched

This article mainly introduces the breadcrumb fun...

A Brief Analysis of Subqueries and Advanced Applications in MySql Database

Subquery in MySql database: Subquery: nesting ano...

Detailed deployment of docker+gitlab+gitlab-runner

environment Server: centos7 Client: window Deploy...

Writing daily automatic backup of MySQL database using mysqldump in Centos7

1. Requirements: Database backup is particularly ...

Linux disk management LVM usage

1. Introduction to LVM When we manage Linux disks...