---
layout: single
property_name: grid-auto-rows
---
Defines the size of grid rows that were created implicitly: it means that
The implicity-created rows have an
Here we combine In this situation, the As a result, the third row height (the footer) takes its value from the
#grid-auto-rows
grid-auto-rows targets the rows that were not defined with grid-template-rows or grid-template-areas.default
grid-auto-rows: auto;
auto size.grid-auto-rows: 100px;
grid-template-areas: "header header header" "sidebar main main" "footer footer footer" with grid-template-rows: 50px 200px.grid-template-areas defines 3 rows, while the grid-template-rows only defines 2 row heights.grid-auto-rows property: 100px.