CSS flex gap 属性设置子元素间隙
CSS About 269 wordsgap
gap
属性设置在父元素样式上,表示flex
布局中子元素之间的间隙。
左右两边的子元素是没有margin-left
和margin-right
的。
flex-direction: column
上下两个子元素是没有margin-top
和margin-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扫描下方二维码关注公众号和小程序↓↓↓

Loading...