Skip to content

Instantly share code, notes, and snippets.

@benhuson
Created April 2, 2014 08:31
Show Gist options
  • Save benhuson/9930186 to your computer and use it in GitHub Desktop.
Save benhuson/9930186 to your computer and use it in GitHub Desktop.
/* Nested Ordered List */
ol {
counter-reset: ol
}
li {
display: block
}
li:before {
content: counters(ol, ".") " ";
counter-increment: ol
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment