Last active
November 21, 2018 15:32
-
-
Save Farmatique/faa352371c289699f29c43c07a03f9dc to your computer and use it in GitHub Desktop.
Custom numbers dots styling in list ol ul
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 { | |
list-style: none; | |
counter-reset: item; | |
} | |
li { | |
counter-increment: item; | |
margin-bottom: 5px; | |
} | |
li:before { | |
margin-right: 10px; | |
content: counter(item) "."; | |
background: lightblue; | |
border-radius: 100%; | |
color: white; | |
width: 1.2em; | |
text-align: center; | |
display: inline-block; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment