Skip to content

Instantly share code, notes, and snippets.

@caycefischer
Created April 1, 2012 17:12
Show Gist options
  • Save caycefischer/2277136 to your computer and use it in GitHub Desktop.
Save caycefischer/2277136 to your computer and use it in GitHub Desktop.
custom list markers, properly hung and with nesting
ol ol {
list-style: lower-alpha;
}
ol ol {
counter-reset: li;
}
ol ol > li {
list-style: none;
}
ol ol > li:before {
margin-left: -2rem;
content: counter(li, lower-alpha)".";
counter-increment: li;
font-style: italic;
float: left;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment