Skip to content

Instantly share code, notes, and snippets.

@JTLR
Created February 3, 2014 15:29
Show Gist options
  • Save JTLR/8785878 to your computer and use it in GitHub Desktop.
Save JTLR/8785878 to your computer and use it in GitHub Desktop.
Styleable UL and OL bullets, works in IE8+
ul {
li {
&:before {
content: "• ";
color: #FF0000;
}
}
}
ol {
li{
counter-increment: item;
&:before {
content: counter(item) ". ";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment