Skip to content

Instantly share code, notes, and snippets.

@jgambill
Last active August 29, 2015 13:58
Show Gist options
  • Save jgambill/10281183 to your computer and use it in GitHub Desktop.
Save jgambill/10281183 to your computer and use it in GitHub Desktop.
Change your list bullet to a custom character in CSS —by Ryan Sechrest #css #icons http://ryansechrest.com/2012/11/change-your-list-bullet-to-a-custom-character-in-css/
ul {
list-style: none;
}
ul li:before {
color: #f00;
content: '» \0000a0'; /* unicode character for space */
font-size: 1.2em;
font-weight: bold;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment