Skip to content

Instantly share code, notes, and snippets.

@chrisdmacrae
Last active March 29, 2018 05:45
Show Gist options
  • Save chrisdmacrae/75bb18af8151e3cfade33090627d281f to your computer and use it in GitHub Desktop.
Save chrisdmacrae/75bb18af8151e3cfade33090627d281f to your computer and use it in GitHub Desktop.
Factor/Selector Example Value
!important color: red !important; +10000
Inline style tag <div style='color: red;'></div> +1000
ID selectors #myId { color: red; } +100
Class selectors .myClass { color: red; } +10
Attribute selectors [title='Example title'] { color: red; } +10
Pseudo-class selectors :hover { color: red; } +10
Pseudo-selectors ::before { color: red; } / ::after { color: red; } +1
Element/Tag selectors div { color: red; } +1
Source order div { color: blue; } div { color: red; } +1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment