Created
November 15, 2019 12:28
-
-
Save janheinrichmerker/85cbbd2f5415ca75d0fdf60f334bd1fb to your computer and use it in GitHub Desktop.
Formatting HTML lists inline.
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 { | |
display: inline; | |
list-style: none; | |
padding: 0; | |
> li { | |
display: inline; | |
&:before { | |
display: inline; | |
content: ", "; | |
} | |
&:first-of-type:before { | |
display: none; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment