margin collapsing

margin ๆœ‰ๅ€‹้‡่ฆ็š„็‰นๆ€ง๏ผŒๅซๅšใ€Œ้‚Š่ท้‡็–Šใ€(margin collapsing)๏ผŒๆ„ๆ€ๆ˜ฏๅ…ฉๅ€‹ๆˆ–ๅคšๅ€‹ๅ…ƒ็ด  (็ˆถๅญใ€ๅ…„ๅผŸ) ็š„ใ€Œๅž‚็›ด้‚Š่ทใ€ๆœƒ่‡ชๅ‹•็ต„ๅˆๆˆๅ–ฎๅ€‹้‚Š่ทใ€‚้‡็–Š้‚Š่ทๆŽก็”จๆœ€ๅคง็š„ margin ๅ€ผ๏ผŒๆญคๅค–ๅฆ‚ๆžœๅ…ƒ็ด ๆœฌ่บซ้ซ˜ๅบฆ็‚บ 0 ๆˆ– auto๏ผŒๅ‰‡ๆœƒ็™ผ็”ŸไธŠไธ‹ margin ้‡็–Š็‹€ๆณใ€‚ ๐Ÿ‘‰ Margin Collapsing

ไธ้Žๅœจไธ‹ๅˆ—็š„ๆƒ…ๅฝขไธญ๏ผŒๅ…ƒ็ด ไธๆœƒ็™ผ็”Ÿ้‚Š่ท้‡็–Š๏ผš

  • ็ˆถๅ…ƒ็ด ๆœ‰่จญๅฎš padding ๆˆ– border ็š„ๅฏฌๅบฆใ€‚

  • margin collapsing does not work on margin-left and -right, just on -top and -bottom.

  • ๅฑฌๆ–ผใ€ŒไธๅŒ็š„ BFC ๅ…งใ€็š„ๅ…ƒ็ด ๏ผŒไพ‹ๅฆ‚๏ผš

    • position ไฝฟ็”จ absoluteใ€fixed ็š„ๅ…ƒ็ด ใ€‚

    • ๅ…ƒ็ด ้–“็ฉฟๆ’ไบ† BFC ๅ…ƒ็ด ๏ผŒไพ‹ๅฆ‚ inlineใ€table...็ญ‰ใ€‚

    • display ๅฑฌๆ€ง็‚บ inline-blockใ€table-cellใ€table-caption ็š„ๅ…ƒ็ด ใ€‚

    • display ๅฑฌๆ€ง็‚บ flexใ€inline-flexใ€gridใ€inline-grid ็š„ๅ…ƒ็ด ใ€‚

preventing margins from collapsing

  • the margins of flexbox items donโ€™t collapse.

  • if you add top and bottom padding/border to the parent container, the margins inside it wonโ€™t collapse to the outside.

  • applying overflow: auto (or any value other than visible) to the container prevents margins inside the container from collapsing with those outside the container.

  • elements with display: table-cell donโ€™t have a margin, so they wonโ€™t collapse, this also applies to table-row and most other table display types. (exceptions: table, table-inline, and table-caption)

margins between elements

/* 
    use adjacent sibling combinator (+) 
    to apply a margin between buttons 
*/
.button + .button {
    margin-block-start: 0.5em;
}

ๅƒ่€ƒ

Last updated

Was this helpful?