Skip to content

Instantly share code, notes, and snippets.

@megantaylor
Created August 23, 2013 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save megantaylor/6320082 to your computer and use it in GitHub Desktop.
Save megantaylor/6320082 to your computer and use it in GitHub Desktop.
Defining the color of bullets in a list without using an image or span tag
ul {
list-style: none;
padding:0;
margin:0;
}
li {
padding-left: 1em;
text-indent: -.7em;
}
li:before {
content: "• ";
color: red; /* or whatever color you prefer */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment