Skip to content

Instantly share code, notes, and snippets.

@mikeyakymenko
Created September 19, 2012 11:23
Show Gist options
  • Save mikeyakymenko/3749143 to your computer and use it in GitHub Desktop.
Save mikeyakymenko/3749143 to your computer and use it in GitHub Desktop.
Number list with sub list on css
ol>li{
display:block
}
ol>li:before{
content:counters(item,".") ". ";
counter-increment:item
}
ol{
counter-reset:item
}
@mikeyakymenko
Copy link
Author

Number ordered list with sub

Simple way to do this

1 - aa
1.1 -bb
2 - cc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment