1
HTML/CSSAdvanced#css#grid
CSS Grid lays out children in two dimensions. grid-template-columns/rows define the track sizes; the fr unit represents a fraction of remaining free space, allowing flexible proportional columns without calculating percentages.
.layout {
display: grid;
grid-template-columns: 200px 1fr 1fr;
grid-template-rows: auto 1fr auto;
gap: 16px;
}