Created
April 1, 2012 17:12
-
-
Save caycefischer/2277136 to your computer and use it in GitHub Desktop.
custom list markers, properly hung and with nesting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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