CSS Grid Properties – Grid-auto-rows with Practical examples

## Property details – grid-auto-rows
The `grid-auto-rows` property in CSS is used in a grid container to set the size of implicit rows (rows that are created by the grid but not explicitly defined using the `grid-template-rows` property). The `minmax()` function allows you to define a size range for the rows.

Let’s break down `grid-auto-rows: minmax(100px, auto):`

`minmax(100px, auto)`: This function sets a size range for the rows. It specifies that the minimum size of the row is `100px`,

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top