CSS: List Bullet Style

By Xah Lee. Date: . Last updated: .

List Style Bullet Type

list-style-type controls the type of the bullet for HTML List .

it can be used on both ul and ol elements.

Possible values for list-style-type

list-style-type: disc
  • cat
  • dog
  • bird
list-style-type: square
  • cat
  • dog
  • bird
list-style-type: circle
  • cat
  • dog
  • bird
list-style-type: decimal
  • cat
  • dog
  • bird
list-style-type: lower-roman
  • cat
  • dog
  • bird
list-style-type: upper-roman
  • cat
  • dog
  • bird
list-style-type: lower-alpha
  • cat
  • dog
  • bird
list-style-type: upper-alpha
  • cat
  • dog
  • bird
list-style-type: none
  • cat
  • dog
  • bird
list-style-type: "⭐"

Any string. e.g. "⭐"

  • cat
  • dog
  • bird

HTML list