CSS grid-column-end Property

❮ Previous Reference Next ❯

Example

.item1 {
  grid-column-start: 1;
  grid-column-end: span 2;
}

.item6 {
  grid-column-start: 1;
  grid-column-end: span 6;
}





1
2
3
4
5
6

Meaning

The grid-column-end property specifies a grid item's end position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the block-end edge of its grid area.

Default value:auto
Inherited:No
Animatable:Yes
Version:CSS Grid Layout Module Level 1
JavaScript syntax:
object.style.gridColumnEnd="auto|span n|column-line|initial|inherite|revert|revert-layer|unset";



Standard Syntax

grid-column-end: auto|span n|column-line|initial|inherite|revert|revert-layer|unset;



Browser Support

The numbers in the table specify the first browser version that fully supports the property.




Status







Property Values

The following table describes the values of this property.

Value Description
auto This is default value. Specifies that the item will span one column.
span n Specifies that the number of columns the item will span.
column-line Specifies on which column to end the display of the item.
initial Sets this property to its default value.
inherit If specified, the associated element takes the computed value of its parent element animation-delay property.
revert Reverts the cascaded value of the property from its current value to the value the property
revert-layer Rollback styles to the ones specified in previous cascade layers.
unset Resets a property to its inherited value if the property naturally inherits from its parent, and to its initial value if not.



Default CSS Property Values

selectors {
  grid-column-end: auto;
}



More Example

Example

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
}

.item3 {
  grid-column-end: 1;
  border: 2px solid red;
}



grid-column-start + grid-column-end

Example

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
}

.item3 {
  grid-column-start: 1;
  grid-column-end: 4;
  border: 2px solid red;
}
❮ Previous Reference Next ❯