Last active
September 19, 2017 07:05
-
-
Save Onepo1ntFive/a0944151e4b1a66a530d8a5cbffa966b to your computer and use it in GitHub Desktop.
This file contains hidden or 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 { | |
| counter-reset: item; | |
| margin-left: 0; | |
| padding-left: 0; | |
| } | |
| li { | |
| display: block; | |
| margin-bottom: .5em; | |
| margin-left: 2em; | |
| } | |
| li:before { | |
| display: inline-block; | |
| content: counter(item) ") "; | |
| counter-increment: item; | |
| width: 2em; | |
| margin-left: -2em; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment