Flexbox
Noun · Development
Definitions
A one-dimensional CSS layout model for distributing space and aligning items along a single axis (row or column). Handles content of unknown size, enables centering (the historically hardest CSS task), and manages spacing with gap. The go-to layout system for navigation bars, card rows, and form layouts.
In plain English: A CSS layout system for arranging items in a row or column with flexible sizing and easy alignment.
Example: "display: flex; justify-content: center; align-items: center; — the CSS incantation that finally makes centering a div easy."