Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does ::marker in html of inspector window mean?

I saw in debug console there is an element like following enter image description here

<li>
    ::marker
    Wait until your DNS configuration changes. This could take up to 72 hours.
</li>

What does this ::marker mean?

like image 873
ycshao Avatar asked Sep 12 '25 08:09

ycshao


1 Answers

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.

— https://developer.mozilla.org/en-US/docs/Web/CSS/::marker

like image 165
Quentin Avatar answered Sep 14 '25 20:09

Quentin