Skip to content

Instantly share code, notes, and snippets.

@markbain
Created August 30, 2013 07:05
Show Gist options
  • Save markbain/6387025 to your computer and use it in GitHub Desktop.
Save markbain/6387025 to your computer and use it in GitHub Desktop.
Adds subtle (or not so subtle, depending on the background) border to list items.
li {
border-top: 1px solid rgba(255,255,255,0.1);
border-bottom: 1px solid rgba(0,0,0,0.2);
}
li:first-child {
border-top: none;
}
li:last-child {
border-bottom: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment