Skip to content

Instantly share code, notes, and snippets.

@pbb72
Forked from jirutka/sample.png
Created October 28, 2014 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pbb72/d8ae9a91babbb8de7861 to your computer and use it in GitHub Desktop.
Save pbb72/d8ae9a91babbb8de7861 to your computer and use it in GitHub Desktop.
/**
* Nested numbered list with correct indentation.
*
* View on http://jsfiddle.net/p3rtLw7q/.
* Tested on Firefox 32, Chromium 37, IE 9 and Android Browser. Doesn't work on IE 7 and previous.
*/
ol {
list-style-type: none;
counter-reset: item;
margin: 0;
padding: 0;
}
ol > li {
display: table;
counter-increment: item;
margin-bottom: 0.6em;
}
ol > li:before {
content: counters(item, ".") ". ";
display: table-cell;
padding-right: 0.6em;
}
li ol > li {
margin: 0;
}
li ol > li:before {
content: counters(item, ".") " ";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment