The display property is the most important CSS property for controlling layout.
| Value | Description |
|---|---|
| block | Starts on new line, full width |
| inline | Does not start on new line, only as wide as content |
| inline-block | Inline but accepts width/height |
| none | Hidden — removed from layout |
| flex | Flexible box layout |
| grid | Grid layout |
Edit the code below and click Run to see the result live.