This document discusses the CSS display property and its common values of inline, block, and inline-block.
Inline elements sit within a line of text, block elements break onto their own line and take up the full width by default, and inline-block allows elements to sit inline while applying block-level properties like width and height.
The display property specifies how elements are displayed, with none completely removing the element from view. Common HTML elements have default display values like spans being inline and divs being block. Mastering these fundamental display values allows for building most page layouts.