mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 19:06:41 +00:00
Fix specificity notes formatting
This commit is contained in:
parent
8a39b7085e
commit
84214871a9
1 changed files with 7 additions and 6 deletions
13
CSS/CSS.md
13
CSS/CSS.md
|
@ -632,13 +632,14 @@ The developer is supposed to add additional styling where required.
|
||||||
|
|
||||||
## Specificity
|
## Specificity
|
||||||
|
|
||||||
A weight is applied to a CSS declaration, determined by the number of each selector type.
|
A weight is applied to a CSS declaration, determined by the number of each selector type:
|
||||||
1-0-0: ID selector
|
|
||||||
0-1-0: Class selector, Attribute selector, Pseudo-class
|
|
||||||
0-0-1: Element Selector, Pseudo-element
|
|
||||||
0-0-0: Universal selector (*), combinators (+, >, ~, ' ', ||) and negation pseudo-class :not()
|
|
||||||
|
|
||||||
**Note**: The selectors declared inside :not() contribute to the weight.
|
- `1-0-0`: ID selector
|
||||||
|
- `0-1-0`: Class selector, Attribute selector, Pseudo-class
|
||||||
|
- `0-0-1`: Element Selector, Pseudo-element
|
||||||
|
- `0-0-0`: Universal selector (`*`), combinators (`+`, `>`, `~`, `||`) and negation pseudo-class `:not()`
|
||||||
|
|
||||||
|
**Note**: The selectors declared inside `:not()` contribute to the weight.
|
||||||
Specificity is usually the reason why CSS-rules don't apply to some elements when think you they should
|
Specificity is usually the reason why CSS-rules don't apply to some elements when think you they should
|
||||||
|
|
||||||
## Box Model
|
## Box Model
|
||||||
|
|
Loading…
Add table
Reference in a new issue