Skip to content

Instantly share code, notes, and snippets.

@mohnish
Forked from AllThingsSmitty/css-not.scss
Last active August 29, 2015 14:22
Show Gist options
  • Save mohnish/1b9c08364168bbbf5328 to your computer and use it in GitHub Desktop.
Save mohnish/1b9c08364168bbbf5328 to your computer and use it in GitHub Desktop.
.nav-tab {
...
// instead of putting it on
border-right: 1px solid #424242;
&:last-child {
border-right: 0; // and then taking it off
}
// use CSS not() to only apply to the elements you want
&:not(:last-child) {
border-right: 1px solid #424242;
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment