CSS List-Style-Type Property

CSS 1

CSS 2

CSS 3

Yes Yes Yes

Description

Specifies the type of list item marker to be used.

Syntax

list-style-type: [value];

Possible values

  • disc
  • circle
  • square
  • decimal
  • decimal-leading-zero
  • lower-roman
  • upper-roman
  • lower-greek
  • lower-alpha
  • lower-latin
  • upper-alpha
  • upper-latin
  • hebrew
  • armenian
  • georgian
  • cjk-ideographic
  • hiragana
  • katakana
  • hiragana-iroha
  • katakana-iroha
  • none
  • inherit

Initial Value

Disc

Applies To

List item elements

Inherited

Yes

Media

Visual

Example

ol {list-style-type: lower-roman;}


View All CSS Properties