CSS

Flexbox

Definition

A CSS layout model for one-dimensional arrangements (row or column). Flexbox distributes space among items and handles alignment, even when sizes are dynamic. Set `display: flex` on the container and control children with properties like `justify-content`, `align-items`, and `flex-grow`.

Code Example

Css

Learn More

Related Terms