What Are Some Common Values for list-style-type in CSS?

In web design, lists are used everywhere—from navigation menus to content sections and forms. The list-style-type property in CSS gives you control over how list markers (bullets or numbers) appear in both unordered and ordered lists. By understanding the available values, you can design lists that match your site’s look and feel.

In this post, we’ll explore the most common values for list-style-type and when to use them.


📋 What Does list-style-type Do?

The list-style-type property defines the marker style of list items in unordered (<ul>) and ordered (<ol>) lists.

Syntax:

selector {
  list-style-type: value;
}

🔹 Common Values for Unordered Lists (<ul>)

These values define the shape of the bullet:

ValueDescriptionExample Output
discSolid circle (default)• Item
circleHollow circle○ Item
squareSolid square■ Item
noneRemoves the marker(no bullet)

Example:

ul {
  list-style-type: square;
}

🔸 Common Values for Ordered Lists (<ol>)

These values define the type of numbering:

ValueDescriptionExample Output
decimalStandard numbers1, 2, 3
decimal-leading-zeroPadded numbers01, 02, 03
lower-alphaLowercase lettersa, b, c
upper-alphaUppercase lettersA, B, C
lower-romanLowercase Roman numeralsi, ii, iii
upper-romanUppercase Roman numeralsI, II, III

Example:

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

🚫 Hiding List Markers

To remove markers altogether—useful for navigation menus or custom-styled lists:

ul {
  list-style-type: none;
  padding-left: 0;
}

🧩 Bonus: Less Common or Locale-Specific Values

Depending on browser support, you might encounter or use other values like:

  • armenian
  • georgian
  • hebrew
  • cjk-ideographic
  • katakana
  • hiragana

These are useful for internationalization but are less commonly used in standard web projects.


📝 Final Thoughts

The list-style-type property is a simple yet powerful tool in your CSS toolkit. Whether you’re creating a clean navigation list, formatting legal documents, or building multi-level outlines, choosing the right list style can significantly improve the visual clarity of your content.

Sharing Is Caring:

Leave a Comment