Skip to content

Instantly share code, notes, and snippets.

@johhansantana
Created November 5, 2015 18:14
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 johhansantana/2eb9ef8ca21bcfe5fd76 to your computer and use it in GitHub Desktop.
Save johhansantana/2eb9ef8ca21bcfe5fd76 to your computer and use it in GitHub Desktop.
select first class with css
.myclass {
/* styles of the first one */
}
.myclass ~ .myclass {
/* styles of the others (must cancel the styles of the first rule) */
}
/* source: http://stackoverflow.com/questions/5287272/css-select-first-element-with-a-certain-class */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment