Skip to content

Instantly share code, notes, and snippets.

@i5ar
Forked from jedsundwall/gist:586144
Last active August 29, 2015 14:11
Show Gist options
  • Save i5ar/34a38c00127f7d9b526a to your computer and use it in GitHub Desktop.
Save i5ar/34a38c00127f7d9b526a to your computer and use it in GitHub Desktop.
Add commas to items in an unordered list
ul.tags {
display: inline;
margin: 0;
padding: 0;
}
ul.tags li {
display: inline;
list-style: none;
margin: 0;
padding: 0;
}
ul.tags li:after {
content: ", ";
color: #aaa;
}
ul.tags li:last-child:after {
content: "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment