Skip to content

Instantly share code, notes, and snippets.

@mjj2000
Last active February 27, 2018 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mjj2000/5873872 to your computer and use it in GitHub Desktop.
Save mjj2000/5873872 to your computer and use it in GitHub Desktop.
css selector priority

css selector priority

priority selector example
1 inline style in html tag <div style="color:red">
2 tag#id div#myID { color:red; }
3 #id .myID { color:red; }
4 tag.class div.myClass { color:red; }
5 .class .myClass { color:red; }
6 tag div { color:red; }
7 * * { color:red; }

Reference:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment