list-style-type
Specifies the marker string, which is used to fill the list item’s marker when its content value is normal and there is no marker image. 3.4. Text-based Markers: the list-style-type property
Links about list-style-type
List Style Recipes | CSS-Tricks
Lists are a fundamental part of HTML! They are useful in things like blog posts for listing out steps, recipes for listing ingredients, or items in a
Here’s what I didn’t know about list-style-type
In Chrome 79+, Firefox 39+, and Opera 66+ it’s possible to define a string value as the bullet of an ordered or unordered list.
“Fixing” Lists | scottohara.me
In September of 2017 Gerard K. Cohen of Unfettered Thoughts posted an article on the how VoiceOver and Safari (Webkit) (macOS and iOS) remove list element se...
Tags:VoiceOver and list-style-type: none
With that bit of additional CSS, we are able to return the list semantics for VoiceOver users without needing to touch the markup.
Tags:list-style-type
The list-style-type CSS property sets the marker (such as a disc, character, or custom counter style) of a list item element.
list-style | CSS-Tricks
The list-style property is a shorthand property that sets values for three different list-related properties in one declaration: ul { list-style: || || ;
This might be interesting as well
::marker | CSS-Tricks
The ::marker pseudo-element is for applying list-style attributes on a given element. It effectively targets the bullet-point or number generated by a

Code sample
ol {
list-style-type: lower-roman;
}
Explore other pages
- inert
Indicates that the element is to be made inert.
- aria-roledescription
Defines a human-readable, author-localized description for the role of an element.
- display: contents
An element doesn't generate any boxes, but its children still do.
- :focus-visible
Applies if the user agent determines via heuristics that the focus should be made evident.