Change Color Of Bullet Points Css

change color of bullet points css
li::marker {
color: red;
}
/* ^ just set the color of the marker pseudo element */
how to change only bullet color in css
li::before {content: "•"; color: red;
display: inline-block; width: 1em;
margin-left: -1em}
Source:www.w3.org
how to change only bullet color in css
li::before {content: counter(li); color: red;
display: inline-block; width: 1em;
margin-left: -1em}
Source: www.w3.org

Leave a Comment