The grid-row
and grid-column
properties define which row or column an element will be displayed on.
.element { grid-row | grid-column: <integer> [DEFAULT: auto]; }
Important! grid-row
is supposed to be a shorthand for grid-row-position
and grid-row-span
. The current implementation in Internet Explorer 10 for grid-row
should be the one for grid-row-position
(which isn’t supported). Same goes for grid-column
.
Related
Browser Support
Chrome | Safari | Firefox | Opera | IE | Android | iOS |
---|---|---|---|---|---|---|
none | none | none | none | 10+ | none | none |
Support coming in WebKit and Gecko (currently in some nightly builds).
Leave a Reply