HomeReferencesCSS Properties

CSS Property: list-style-type

Specifies the style of the list marker bullet or numbering system within a list.

HTML Dog, The Book HTML Dog book cover

HTML Dog is hosted by Titan Internet

Possible Values

  • inherit
  • none - no list marker.
  • disc - solid circle.
  • circle - empty circle.
  • square - solid square.
  • decimal - 1, 2, 3, 4 etc.
  • decimal-leading-zero - 01, 02, 03 ... 10, 11 etc. Not supported by IE.
  • lower-roman - i, ii, iii, iv etc.
  • upper-roman - I, II, III, IV etc.
  • lower-greek - Greek characters. Not supported by IE.
  • lower-latin - a, b, c, d etc. Not supported by IE.
  • upper-latin - A, B, C, D etc. Not supported by IE.
  • armenian
  • georgian

Example


ul { list-style-type: square; }