CSS attribute margin
0. Impact on its own visual width
1>Change the visual width of the block element that is in the standard document flow and has no width value set
In the standard document flow, for a block element that does not have a width set, when it has content or a height is set, its own width is 100% of the width of the parent element. At this time, set the horizontal margin value for the block element. Will change the visual width of the element. But the height cannot be changed, because the height of the block element is fixed or equal to the height of its content and will not stretch.
This feature is useful in bootstrap layout.
<p class="wrap"> 父元素padding: 0 10px; <p class="yellow">此block元素没有设置margin值</p> <p class="red">此block元素设置margin-left:-10px;margin-right:-10px; 拉伸了元素宽度</p></p>
* {margin:0; padding:0;}.wrap { width: 400px; height: 400px; margin: 50px auto; padding: 0 10px; border: 1px solid #ccc; }.red { height: 100px; background-color: red; margin: 0 -10px; }.yellow { height: 100px; background-color: yellow; }
<p class="wrap"> 父元素position: relative; <p class="yellow">绝对定位,并且设置top:0; bottom:0; 垂直拉伸元素,通过设置margin来改变可视高度</p></p>
* {margin:0; padding:0;}.wrap { position: relative; width: 400px; height: 400px; margin: 50px auto; border: 1px solid #ccc; }.yellow { position: absolute; top: 0; bottom: 0; width: 100px; margin: 50px 0; background-color: yellow; }
##1. Percentage The margin of the value is the same as padding. For elements that are normally in the standard document flow, when the margin value of the element is a percentage value, its actual value is equal to the width of the parent element * percentage;
When an element is set to absolute positioning, its actual value is equal to the width * percentage of the first parent element positioned relative to it
<p class="wrap"> 父元素宽度400px; <p class="yellow">margin-top:10%; 实际的margin-top=400px*10%=40px</p></p>
* {margin:0; padding:0;}.wrap { width: 400px; height: 400px; margin: 50px auto; border: 1px solid #ccc; }.yellow { width: 200px; height: 200px; margin-top: 10%; background-color: yellow; }
Margin overlap usually occurs between sibling elements and between parent and child elements. If you don’t pay attention to it, margin Overlap may often cause us some minor troubles. Here is a summary of the situations where margin overlap occurs.
1>Between sibling elements
When two elements have margin overlap, their actual values are:
When two margin values When both are positive, the actual value = the larger of the two values
-
When the two margin values are one positive and one negative, the actual value = the addition of the two values
When both margin values are negative, the actual value = the larger absolute value of the two
When will margin overlap occur?
For two adjacent sibling elements, as long as they are block elements in the standard document flow, margin overlap will occur in the vertical direction.
2>Between the parent element and the first/last child element
Set border-top/bottom
Set padding-top/bottom
Set attributes such as overflow:hidden/auto to implement the auto value of BFC
3.margin
Set margin: 0 auto; for a fixed-width block element to center the element horizontally. This should be commonly used by many people, but few people may know the specific role of the auto value.
To put it simply, for elements that do not have a fixed width or height value set, if they can be automatically stretched, then after a fixed value is set, auto can be used to allocate the remaining space.
It feels a bit confusing. For example, there is a block element with a fixed width. We want it to be displayed on the right side. The most commonly used method is to use the float attribute, but it can also be achieved with margin-left: auto;:
<p class="wrap"> <p class="red">margin-left: auto;</p></p>
* {margin:0; padding:0;}.wrap { position: relative; width: 400px; height: 400px; margin: 50px auto; border: 1px solid #ccc; }.red { width: 100px; height: 100px; background-color: red; margin-left: auto; }
Ordinary fixed-width block elements, the horizontal direction setting is valid;
Absolutely positioned elements, when paired left/right, top are set When /bottom or both are set, fixed width or fixed height is valid;
#When the parent element is display: flex;, the child element margin value is auto
For more CSS attribute margin related articles, please pay attention to the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or

With the recent climb of Bitcoin’s price over 20k $USD, and to it recently breaking 30k, I thought it’s worth taking a deep dive back into creating Ethereum

It's out! Congrats to the Vue team for getting it done, I know it was a massive effort and a long time coming. All new docs, as well.

I had someone write in with this very legit question. Lea just blogged about how you can get valid CSS properties themselves from the browser. That's like this.

I'd say "website" fits better than "mobile app" but I like this framing from Max Lynch:

There are a number of these desktop apps where the goal is showing your site at different dimensions all at the same time. So you can, for example, be writing

If we need to show documentation to the user directly in the WordPress editor, what is the best way to do it?

The other day, I spotted this particularly lovely bit from Corey Ginnivan’s website where a collection of cards stack on top of one another as you scroll.
