display: grid;

display: inline-grid;

display: grid;
grid-template-rows: 100px 250px;

100px row height
250px row height
no value set
no value set

display: grid;
grid-template-columns: 1fr 2fr 2fr 1fr;

1fr
2fr
2fr
1fr

display: grid;
grid-template-columns: 4fr 1fr 1fr 1fr;

4fr
1fr
1fr
1fr
            

grid-template-columns: auto;
grid-template-rows: 100px 500px 100px;
grid-template-areas:
"header header header header"
"main main main sidebar"
"footer footer footer footer";

header
main