Last active
January 5, 2020 23:26
-
-
Save sorskoot/8c88438e18aee4b98965fd1a5b471734 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
div // weight of 1 | |
#post span // weight of 100 + 1 = 101 | |
<div id="post"><span style="color: #ff0000">Post Text</span></div> // weight of 1000 |
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
div#some-id {color: red;} | |
#some-id {color: green;} | |
div[id=some-id] {color: blue;} | |
.some-class {color: yellow;} | |
h1 {color: cyan;} | |
h1 {color: purple;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment