Created
February 27, 2013 12:59
-
-
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.
This file contains 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
// 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