CSS Grid with Galaxy layout: now available in Figma! @nanacodesign

Published on:

5. Reflect: 3 Key Learnings

Comparing implicit and explicit grids in CSS
Comparing implicit and explicit grids in CSS
fr units need explicit height
fr units need explicit height
The browser can’t calculate row heights
The browser can’t calculate row heights
Height doesn’t get updated automatically
Height doesn’t get updated automatically
Width gets updated automatically
Width gets updated automatically
Use fr unit in the grid-templage-rows property and takes up the entire height of the screen
Use fr unit in the grid-templage-rows property and takes up the entire height of the screen
.container {
height: 100vh;
grid-template-row: repeat(6, 1fr);
}

Source link

Related