The grid-column-end
property defines how many columns an item will span, or on which column-line the item will end (see example at the end of this page).
Default value: | auto |
---|---|
Inherited: | no |
Animatable: | yes. Read about animatable Try it |
Version: | CSS Grid Layout Module Level 1 |
JavaScript syntax: | object.style.gridColumnEnd="5" Try it |
The numbers in the table specify the first browser version that fully supports the property.
Property | |||||
---|---|---|---|---|---|
grid-column-end | 57 | 16 | 52 | 10 | 44 |
grid-column-end: auto|span
n|
column-line;
Value | Description | Demo |
---|---|---|
auto | Default value. The item will span one column | Demo ❯ |
span n | Specifies the number of columns the item will span | Demo ❯ |
column-line | Specifies on which column to end the display of the item | Demo ❯ |
You can use column-line values instead numbers of columns to span:
.item1 {
grid-column-end: 3;
}
Try it Yourself »
CSS tutorial: CSS Grid Layout
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!