Skip to content

Instantly share code, notes, and snippets.

@klickreflex
Created May 19, 2014 10:15
Show Gist options
  • Save klickreflex/860ec90553574e4fbb29 to your computer and use it in GitHub Desktop.
Save klickreflex/860ec90553574e4fbb29 to your computer and use it in GitHub Desktop.
CSSList Bullet Coloring
li {
list-style: none;
}
li:before {
/* For a round bullet */
content:'\2022';
/* For a square bullet */
/*content:'\25A0';*/
display: block;
position: relative;
max-width: 0px;
max-height: 0px;
left: -15px;
top: -0px;
color: green;
font-size: 20px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment