Last active
February 12, 2020 12:53
-
-
Save mattjmattj/8f9d7389bb0c75509b0c15619552e70b to your computer and use it in GitHub Desktop.
list-style : mdash
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
| ul.mdash { | |
| margin-left: 0; | |
| padding-left: 1em; | |
| } | |
| ul.mdash > li { | |
| list-style-type: none; | |
| text-indent: -1em; | |
| } | |
| ul.mdash > li:before { | |
| display: list-item; | |
| float: left; | |
| content: "\2014"; | |
| width: 1.5em; | |
| margin-left: -1em; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment