CSS flex gap 属性设置子元素间隙

CSS About 269 words

gap

gap属性设置在父元素样式上,表示flex布局中子元素之间的间隙。

左右两边的子元素是没有margin-leftmargin-right的。

flex-direction: column上下两个子元素是没有margin-topmargin-bottom

代码

.parent1 {
    display: flex;
    gap: 40px;
}

纵向上子元素的间隙

.parent2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
Views: 11 · Posted: 2025-08-29

————        END        ————

Give me a Star, Thanks:)

https://github.com/fendoudebb/LiteNote

扫描下方二维码关注公众号和小程序↓↓↓

扫描下方二维码关注公众号和小程序↓↓↓


Today On History
Browsing Refresh