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

CSS Reference: Flexbox

Quick reference for Flexbox.

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

CSS Reference — Flexbox

Quick summary of Flexbox with syntax and example.

Syntax

.container{ display:flex; }

Example

.container{ display:flex; gap:12px; }
.card{ flex:1; padding:16px; border:1px solid #e5e7eb; border-radius:14px; }