Google
CSS Display Property

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;}