1ul {
2 list-style: none; /* Remove default bullets */
3}
4
5ul li::before {
6
7 content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a
8 bullet */
9 color: red; /* Change the color */
10 font-weight:
11 bold; /* If you want it to be bold */
12 display: inline-block; /*
13 Needed to add space between the bullet and the text */
14 width: 1em;
15 /* Also needed for space (tweak if needed) */
16 margin-left: -1em; /*
17 Also needed for space (tweak if needed) */
18}