The ::marker CSS pseudo-element selects the marker box of a list item, which typically contains a bullet or number. It works on any element or pseudo-element set to display: list-item, such as the <li> and <summary> elements.
::marker
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Try it
li::marker {
content: "✝ ";
font-size: 1.2em;
}
<p>Group known as Mercury Seven:</p> <ul> <li>Malcolm Scott Carpenter</li> <li>Leroy Gordon (Gordo) Cooper Jr.</li> <li>John Herschel Glenn Jr.</li> <li>Virgil Ivan (Gus) Grissom</li> <li>Walter Marty (Wally) Schirra Jr.</li> <li>Alan Bartlett Shepard Jr.</li> <li>Donald Kent (Deke) Slayton</li> </ul>
Allowable properties
The ::marker pseudo-element supports a limited number of CSS properties, including:
- All font properties
- The
white-spaceproperty color-
text-combine-upright,unicode-bidi, anddirectionproperties - The
contentproperty - All animation and transition properties
Note: The specification states that additional CSS properties may be supported in the future.
Syntax
::marker {
/* ... */
}
Examples
HTML
<ul> <li>Peaches</li> <li>Apples</li> <li>Plums</li> </ul>
CSS
ul li::marker {
color: red;
font-size: 1.5em;
}
Result
Specifications
| Specification |
|---|
| CSS Pseudo-Elements Module Level 4 # marker-pseudo |
Browser compatibility
| Desktop | Mobile | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | |
::marker |
86 | 86 | 68 | 72 | 11.1Safari support is limited tocolor and font-size. |
86 | 68 | 61 | 11.3Safari on iOS support is limited tocolor and font-size. |
14.0 | 86 |
animation_and_transition_support |
86 | 86 | 80 | 72 | No | 86 | 80 | 61 | No | 14.0 | 86 |
See also
- HTML elements that have marker boxes by default:
<ol>,<li>,<summary> - CSS generated content module
- CSS lists and counters module
- CSS counter styles module
© 2005–2024 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/::marker