Skip to content

Instantly share code, notes, and snippets.

@kirandash
Created May 3, 2017 05:40
Show Gist options
  • Save kirandash/b7fe38727458863cc8aeffabfb5df3fe to your computer and use it in GitHub Desktop.
Save kirandash/b7fe38727458863cc8aeffabfb5df3fe to your computer and use it in GitHub Desktop.
Ordered List - Nested Counter
ol {
counter-reset: item;
}
ol li {
display: block;
position: relative;
}
ol li:before {
content: counters(item, ".") " ";
counter-increment: item;
position: absolute;
left: -16px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment