Skip to content

Instantly share code, notes, and snippets.

@momin-riyadh
Forked from AllThingsSmitty/css-not.scss
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save momin-riyadh/d7ef889d928a6e287522 to your computer and use it in GitHub Desktop.
Save momin-riyadh/d7ef889d928a6e287522 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