CSS

CSS Intro

CSS Intro Quiz

CSS Intro Exercise

CSS Basic

CSS Basic Quiz

CSS Basic Exercise

CSS Advance

CSS Advance Quiz

CSS Advance Exercise

CSS3

CSS3 Quiz

CSS3 Exercise

CSS Properties

CSS Functions

CSS Selectors

CSS grid auto rows Property

CSS grid-auto-rows Property

 

 

The grid-auto-rows property is used to set the size of the rows in a grid container. It only works when the size of a row is not specified.

 

Default Value:-

 

Its default value is:- auto

 

Syntax:-

 

Its syntax is:- grid-auto-rows: auto | max-content | min-content | length;

 

Further Explanation:-

 

Value Description
auto The size of the rows is determined by the size of the largest item in the row
max-content Sets the size of each row to depend on the largest item in the row
min-content Sets the size of each row to depend on the smallest item in the row
length Sets the size of the rows by a length value.

Code Explanation

All Tutorials related to CSS Properties

All Sections related to CSS