List Marker Type Property

Last updated: 2026-09-13

list-style-type List Marker Type Property

list-style-type sets the marker in front of list items, such as a filled dot, hollow circle, number, or Roman numeral. The default is disc. It supports many predefined markers and custom strings, making it the most commonly used property for controlling a list's visual appearance.

Category
Initial Valuedisc
InheritedNo
Applies To
Animation Type
CSS VersionCSS1
StatusStandard

📝 Syntax

list-style-type: none | disc | circle | square | decimal | decimal-leading-zero | lower-roman | upper-roman | lower-greek | lower-latin | upper-latin | armenian | georgian | lower-alpha | upper-alpha | <string>;

⚙️ Values

ValueTypeDescription
disc | circle | square | decimal | none | decimal-leading-zero | lower-roman | upper-roman | lower-greek | lower-latin | upper-latin | armenian | georgian | lower-alpha | upper-alphaKeywordList marker types

▶ Example

Edit the code below and see the live result in the playground:

🌐 Browser Support

Browser ChromeChrome EdgeEdge FirefoxFirefox SafariSafari OperaOpera
list-style-type v1 v12 v1 v1 v1
Supported in all major browsers
Tip: list-style-type: none removes the marker entirely, commonly used for horizontal navigation menus.
Warning: Some marker types (such as georgian and armenian) may render inconsistently across browsers.

❓ FAQ

QWhat is the difference between disc, circle, and square?
Adisc is a filled dot (the default for unordered lists), circle is a hollow circle, and square is a filled square. All three are used in <ul> lists and render slightly differently across browsers. disc is the most common, circle looks lighter, and square suits emphasized lists. If the current font lacks the glyph, the browser falls back to disc.
QHow do I customize list markers with emoji or icons?
ATwo ways: use a string value directly, list-style-type: "→ "; (supported by modern browsers, emoji included), or the more flexible approach: list-style: none plus li::before inserting content: "✔", controlling color, size, and spacing with CSS. The second is recommended for its control and consistent cross-browser behavior.
QWhat are the common numeric marker values?
Adecimal (1, 2, 3), decimal-leading-zero (01, 02), lower-roman/upper-roman, lower-alpha/upper-alpha, georgian, and armenian. Chinese projects commonly use decimal and lower-alpha; tables of contents often use upper-roman.
QDoes the list semantics remain after list-style-type: none?
AYes. list-style-type: none only removes the visible marker; the listitem semantics of <li> are preserved, and screen readers still recognize the list structure. Switch to another element only when the content is no longer a list. Removing markers for nav menus should never cost you the semantics.

📚 Related Tutorials

Web-Tutorial.com

Web-Tutorial Tech Team

A team of developers maintaining programming tutorials. Each tutorial is written and reviewed by developers with expertise in that field. We work to keep our content accurate and reliable — if you spot an issue, please let us know.

100%

🙏 帮我们做得更好

我们是刚上线的编程教程站,几个人的小团队,精力有限。页面虽经检查,难免还有疏漏——链接失效、排版错乱、内容有误、语言生硬……

如果您发现了,麻烦告诉我们,我们会在收到反馈后第一时间进行修复,再次感谢您的光临 🙏