DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

CSS Reference: Grid

Quick reference for Grid.

Read time: 1 min Words: 14
Open Playground → HTML My Progress

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; }