ul li list style dots code example
Example 1: remove bullets from list css
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
Example 2: how to change only bullet color in css
li::before {content: "•"; color: red;
display: inline-block; width: 1em;
margin-left: -1em}