Colorized List Icons
If you want to get colorized list icons using pure CSS, you can use this snippet:
li::before {
content: "•";
color: blue;
display: inline-block;
width: 1em;
margin-left: -1em
}
If you want to get colorized list icons using pure CSS, you can use this snippet:
li::before {
content: "•";
color: blue;
display: inline-block;
width: 1em;
margin-left: -1em
}