Problem Description Today, when I was modifying the page style, I encountered a situation where I set Today I will talk about the cause of the whole problem and the solution. Problem AnalysisThere is such a text on MDN: The top margin ( There are three situations where margin collapse occurs: 1. Between adjacent elements on the same layer<div class="A">Element A</div> <div class="B">Element B</div> <style> .A, .B { width: 50px; height: 50px; } .A { background: yellow; margin-bottom: 10px; } .B { background: pink; margin-top: 20px; } </style> The space between the two p tags above is 20px. Solution: The second element B sets clearfix .clearfix::after { content: ""; display: block; clear: both; height: 0; overflow: hidden; visibility: hidden; } .clearfix { zoom: 1; } 2. There is no content between parent and child elementsIn this example, there are no other elements between the A and B elements and the parent element box: <div class="box"> <div class="A">Element A</div> <div class="B">Element B</div> </div> <div class="next">Next</div> <style> .box { margin-top: 10px; margin-bottom: 10px; background: #eee; } .A, .B { width: 50px; height: 50px; } .A { background: yellow; margin-top: 20px; } .B { background: pink; margin-bottom: 20px; } .next { height: 50px; background: #eee; } </style> Solution:
Note: Even if you set the parent element's margin to 0, 3. Empty block-level elements When element B's <div class="top">top</div> <div class="middle"></div> <div class="bottom">bottom</div> <style> .top,.bottom { width: 50px; height: 50px; background: pink; } .middle { margin-top: 10px; margin-bottom: 20px; } </style> Solution:
Precautions
Reference link https://developer.mozilla.org/zh-CN/docs/Web/CSS/CSS_Box_Model/Mastering_margin_collapsing This is the end of this article about how to solve the problem of child element margin-top causing parent element movement. For more information about child element margin-top causing parent element movement, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. We hope that you will support 123WORDPRESS.COM in the future! |
<<: Linux Centos8 Create CA Certificate Tutorial
>>: HTML page native VIDEO tag hides the download button function
Table of contents 1. Overview 2. Routing Navigati...
Table of contents 1. What is the execution contex...
Table of contents 1. Set Deduplication 2. Double ...
Preface The apt-get command is a package manageme...
Preface: In Vue, props can be used to connect ori...
background Flex layout achieves alignment and spa...
Let's take a look at the code first <form ...
HTML+CSS+JS imitates win10 brightness adjustment ...
I'll record my first attempt at vue3.0. When ...
Table of contents 1. Keywords 2. Deconstruction 3...
1. View openjdk rpm -qa|grep jdk 2. Delete openjd...
MySQL 5.7 adds many new features, such as: Online...
1. Make sure the network connection method is bri...
Effect picture: html: <div class='site_bar...
1. Why do packaging? Facilitates overall code cal...