-
-
Save NSLog0/16074a63ec30387e3d5da478d6339e71 to your computer and use it in GitHub Desktop.
for my tutorials
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
button#submit { } | |
.side-bar-menu#homeIcon { } |
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
#submit { } | |
#homeIcon { } |
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
p.title { } |
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
.title { } |
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
section[data-toggle=”true”] > div > li > a { } | |
input[type=”checkbox”] | |
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
. section-data-toggle { } | |
.input-checkbox { } |
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
html body ul li a { } | |
table > thead > tbody { } |
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
.link { } | |
.my-tbody { } |
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
/* ID rule is Fastest */ | |
button#backButton { } | |
#urlBar[type="autocomplete"] { } | |
ul > li > a#item { } | |
#container { } | |
-------------------------------------------------------- | |
-------------------------------------------------------- | |
/* class-based rule */ | |
button.submit { } | |
.input-md { } /* A */ | |
menuitem > .menu-left[checked="true"] { } | |
-------------------------------------------------------- | |
-------------------------------------------------------- | |
/* Tags rule */ | |
td { } | |
input[type="checkbox"] { } | |
ul li a { } | |
-------------------------------------------------------- | |
-------------------------------------------------------- | |
/* universal is slow */ | |
[hidden="true"] { } | |
* { } /* Slowest */ | |
tree > [collapsed="true"] { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment