Skip to content

Instantly share code, notes, and snippets.

@radleta
Created February 27, 2013 12:59
Show Gist options
  • Save radleta/5047737 to your computer and use it in GitHub Desktop.
Save radleta/5047737 to your computer and use it in GitHub Desktop.
Less Styles for an unordered inline list with the items seperated by bullets.
// Inline unordered list seperated by bullets
ul.list-inline-bullet-seperated
{
list-style-type: none;
li
{
display: inline-block;
}
li:before
{
content: "\2022";
margin-right: 4px;
}
li:first-child:before
{
content: "";
margin-right: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment