Expand description
Utilities for controlling how elements are sized and placed across grid rows.
| Class | Properties |
|---|---|
| row-auto | grid-row: auto; |
| row-start-auto | grid-row-start: auto; |
| row-start-<integer> | grid-row-start: <integer>; |
| row-end-auto | grid-row-end: auto; |
| row-end-<integer> | grid-row-end: <integer>; |
| row-span-full | grid-row: 1 / -1; |
| row-span-<integer> | grid-row: span <integer> / span <integer>; |
§Tailwind compatibility
Grid row start/end/span values don’t follow Tailwind’s philosophy of limiting possible values and all numbers are supported. They are however perfectly compatible with Tailwind’s values.
§Arbitrary values
Any property is allowed as arbitrary value.
For example, row-[span_1/7].