Created
April 25, 2024 09:01
-
-
Save pooooriya/ca2fb32395a23eb51b5a0c16447f1f26 to your computer and use it in GitHub Desktop.
css
This file contains 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
### CSS Selectors | |
```html | |
1. bytag | |
h1 {} | |
2. byId | |
#id{} | |
3. byclass | |
.class{} | |
4. tagwithclass | |
h1.class{} | |
5.multi select with same css | |
h1,h2,h3{} | |
6. next sibling (direct) | |
div + h1 {} | |
7.desc (nested select) | |
div h1 { | |
} | |
8. ~ sibling (*) | |
9. attribute selector | |
tag[attribute="value"]{} | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mashgh