2019-11-23
Colored list bullets
Colored bullets are not supported by CSS. Istead a workaround is needed.
ul {
list-style: none;
}
li::before {
content: "•";
color: red;
display: inline-block;
width: 1em;
margin-left: -1em;
}
Colored bullets are not supported by CSS. Istead a workaround is needed.
ul {
list-style: none;
}
li::before {
content: "•";
color: red;
display: inline-block;
width: 1em;
margin-left: -1em;
}
Comments