Color List bullets

PHOTO EMBED

Sun Aug 01 2021 20:51:19 GMT+0000 (Coordinated Universal Time)

Saved by @grivera12 #css

ul {
  list-style: none;
}

ul li::before {
  content: "\2022";
  color: red;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}
content_copyCOPY