这个gap
属性定义了弹性盒、网格或多列布局中行之间和列之间的间隙大小。它是以下属性的简写:
笔记:这个gap
属性以前被称为 grid-gap
。
表中的数字指定完全支持该属性的第一个浏览器版本。
Property | |||||
---|---|---|---|---|---|
gap (in Grid) | 66 | 16 | 61 | 12 | 53 |
gap (in Flexbox) | 84 | 84 | 63 | 14.1 | 70 |
gap (in Multiple Columns) | 66 | 16 | 61 | Not supported | 53 |
gap:
row-gap column-gap|initial|inherit;
Value | Description | Demo |
---|---|---|
row-gap | Sets the size of the gap between the rows in a grid or flexbox layout | Demo ❯ |
column-gap | Sets the size of the gap between the columns in a grid, flexbox or multi-column layout | Demo ❯ |
initial | Sets this property to its default value. Read about initial | |
inherit | Inherits this property from its parent element. Read about inherit |
在 Flexbox 布局中将行间距设置为 20px,列间距设置为 70px:
#flex-container {
display: flex;
gap: 20px 70px;
}
亲自试一试 »
CSS 教程:CSS 网格布局
CSS 教程:CSS Flexbox 布局
CSS 教程:CSS 多列布局
CSS 参考:行间距属性
CSS 参考:列间隙属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!