Skip to content

Instantly share code, notes, and snippets.

@heinrichreimer
Created November 15, 2019 12:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heinrichreimer/85cbbd2f5415ca75d0fdf60f334bd1fb to your computer and use it in GitHub Desktop.
Save heinrichreimer/85cbbd2f5415ca75d0fdf60f334bd1fb to your computer and use it in GitHub Desktop.
Formatting HTML lists inline.
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