CSS Display & Visibility
The display Property
| Value | Behaviour |
|---|---|
block | Takes full width, starts on new line (div, p, h1…) |
inline | Flows with text, no width/height (span, a…) |
inline-block | Flows inline but respects width/height/padding |
none | Removes element from layout (not visible) |
flex | Enables Flexbox on the container |
grid | Enables CSS Grid on the container |
visibility vs display: none
visibility: hidden— hides but keeps the spacedisplay: none— removes from layout entirely