CSS grid-row-start Property


Example

Make "item1" start on row 2:

.item1 {
  grid-row-start: 2;
}
Try it Yourself »

Definition and Usage

The grid-row-start property defines on which row-line the item will start.

Show demo ❯

Default value: auto
Inherited: no
Animatable: yes. Read about animatable Try it
Version: CSS Grid Layout Module Level 1
JavaScript syntax: object.style.gridRowStart="3" Try it

Browser Support

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

Property
grid-row-start 57 16 52 10 44


CSS Syntax

grid-row-start: auto|row-line;

Property Values

Value Description Demo
auto Default value. The item will be placed by following the flow. Demo ❯
row-line Specifies on which row to start the display of the item. Demo ❯

Related Pages

CSS tutorial: CSS Grid Layout

CSS reference: The grid-column Property

CSS reference: The grid-column-end Property

CSS reference: The grid-row Property

CSS reference: The grid-row-end Property


Copyright 1999-2023 by Refsnes Data. All Rights Reserved.