CSS Tutorial

The language for styling web pages.

CSS Display

CSS Display

The display property is the most important CSS property for controlling layout.

Display Values:

ValueDescription
blockStarts on new line, full width
inlineDoes not start on new line, only as wide as content
inline-blockInline but accepts width/height
noneHidden — removed from layout
flexFlexible box layout
gridGrid layout

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics