CSS Display Property

CSS 1

CSS 2

CSS 3

Yes Yes Yes

Description

Specifies the type of display box generated by the element.

Syntax

display: [value];

Possible values

  • inline
  • block
  • list-item
  • run-in
  • compact
  • marker
  • table
  • inline-table
  • table-row-group
  • table-header-group
  • table-footer-group
  • table-row
  • table-column-group
  • table-column
  • table-cell
  • table-caption
  • none
  • inherit

Initial Value

Inline

Applies To

All elements

Inherited

No

Media

All

Example

p {display: block;}

strong: {display: inline;}


View All CSS Properties