Last active
March 29, 2018 05:45
-
-
Save chrisdmacrae/75bb18af8151e3cfade33090627d281f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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