Margin of parallel boxes (overlap of double margins) interview question: If one box has a top margin and the other box has a bottom margin, will there be a margin overlap problem? Solution: Take the larger value, not the sum of their values, but the one with the larger value will prevail! <!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <title></title> <style type="text/css"> *{margin: 0;padding: 0;} .box1,.box2{ width: 200px; height: 200px; } .box1{ background-color: #f90; margin-bottom: 20px; } .box2{ background-color: aqua; margin-top: 50px; } </style> </head> <body> <div class="box1"></div> <div class="box2"></div> </body> </html> Margin and padding have the same orientation and value, in clockwise direction (up, right, bottom, left). Click to view "Padding and abbreviations for CSS box model" This is the end of this article about margin values and vertical margin overlap in CSS. For more information about margin and vertical margin overlap, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! |
<<: HTML cellpadding and cellspacing attributes explained in pictures
>>: How to connect to a remote docker server with a certificate
Related Documents Part of this article is referen...
Table of contents 1. What is a template string? 2...
Arrange by functionNN : Indicates which earlier ve...
This article shares the specific code of JavaScri...
1. Overview In the daily operation and maintenanc...
In Black Duck's 2017 open source survey, 77% ...
<meta name="viewport" content="...
1. Goal: Change the value of character_set_server...
Table of contents 1. When inserting or modifying ...
1. First, use springboot to build a simple dubbo ...
In MySQL, databases correspond to directories wit...
Table of contents background Question 1 Error 2 E...
When using Dreamweaver or FrontPage to create HTM...
Regarding how to create this thin-line table, a s...
Open Source Database Architecture Design Principl...