TPToolPazar
Ana Sayfa/Rehberler/How To Use Css Grid

How To Use Css Grid

📖 Bu rehber ToolPazar ekibi tarafından hazırlanmıştır. Tüm araçlarımız ücretsiz ve reklamsızdır.

The grid mental model

Three equal columns, 16px gap, done. No media queries, no wrappers.

The fr unit

Changing the layout on mobile becomes a matter of rewriting the template inside a media query — no DOM restructuring required.

grid-template-columns and grid-template-rows

Ten cards? Four rows of three plus a row of two at desktop, two columns at tablet, one column on phone. All from one rule. This pattern alone replaces most of the grid-system CSS that frameworks used to ship.

minmax for responsive tracks

Same keywords as flexbox, same mental model — just applied to grid cells rather than a flex line.

auto-fill vs auto-fit

They nest happily — grid for the shell, flex inside each cell. Don’t pick one as your religion.

grid-column and grid-row on items

Named grid areas

Responsive grids without media queries

Grid items alignment

Grid vs Flexbox

Gaps and alignment

Implicit tracks

Common mistakes

Run the numbers