Skip to content

Instantly share code, notes, and snippets.

@tinotriste
Created June 1, 2013 23:02
Show Gist options
  • Save tinotriste/5692004 to your computer and use it in GitHub Desktop.
Save tinotriste/5692004 to your computer and use it in GitHub Desktop.
LESS: Pipe delimited horizontal menu
.footer-links {
ul {
margin: 0 auto;
list-style-type: none;
li {
width:auto;
margin-right: 10px;
display:inline;
padding:0;
a { margin-right: 10px; }
}
li:after {
content: '|';
}
li:last-child:after {
content: '';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment