CSS Reference: Grid
Quick reference for Grid.
CSS Reference — Grid
Quick summary of Grid with syntax and example.
Syntax
.grid{ display:grid; grid-template-columns:... }
Example
.grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.box{ padding:14px; border:1px solid #e5e7eb; border-radius:12px; }