Skip to content

Instantly share code, notes, and snippets.

@luiseduardobraschi
Last active August 25, 2017 06:05
Show Gist options
  • Save luiseduardobraschi/cb9ff81a7c627b62e0db18248d30393d to your computer and use it in GitHub Desktop.
Save luiseduardobraschi/cb9ff81a7c627b62e0db18248d30393d to your computer and use it in GitHub Desktop.
One-liner last-child style remover.
<style>
ul {
list-style:none;
}
li {
display: inline-block;
padding: 5px;
}
</style>
<ul>
<li>lorem</li>
<li>ipsum</li>
<li>this is the last item</li>
</ul>
li {
border-right:2px solid #b4da55;
}
li:last-child {
border-right:none;
}
/*
Add the style to every item which is not the last one.
*/
li:not(:last-child) {
border-right:2px solid #b4da55;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment