HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

grid-row-start

Description

The grid-row-start property for CSS specifies the inline-start edge of the grid area.

Syntax

CSS

grid-row-start: value;

JS

object.style.gridRowStart = "value";

Values

<'grid-row-start'> = <grid-line>
<grid-line> = auto | <custom-ident> | [ <integer> && <custom-ident>? ] | [ span && [ <integer> || <custom-ident> ] ]
auto

Automatically specified by the user agent.

<custom-ident>

Specifies any valid identifier that is not misinterpreted as a keyword.

<integer>

Specifies one or more decimal digits (0-9).

span

Specifies the number of tracks the item occupies.

Initial

auto

Examples

1 · auto

2 · custom-ident

3 · integer

4 · span

5 · JS