File tree Expand file tree Collapse file tree
plugins/postcss-nesting/docs Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ After **without** the option :
105105}
106106```
107107
108- _ ` .beta:hover ` has specificity as if ` .beta ` where an id selector, matching the specification._
108+ _ ` .beta:hover ` has specificity as if ` .beta ` were an id selector, matching the specification._
109109
110110[ specificity: 1, 1, 0] ( https://polypane.app/css-specificity-calculator/#selector=%3Ais(%23alpha%2C.beta)%3Ahover )
111111
@@ -123,7 +123,7 @@ After **with** the option :
123123}
124124```
125125
126- _ ` .beta:hover ` has specificity as if ` .beta ` where a class selector, conflicting with the specification._
126+ _ ` .beta:hover ` has specificity as if ` .beta ` were a class selector, conflicting with the specification._
127127
128128[ specificity: 0, 2, 0] ( https://polypane.app/css-specificity-calculator/#selector=.beta%3Ahover )
129129
@@ -167,8 +167,8 @@ After **with** the option :
167167```
168168
169169_ this is a different selector than expected as ` .beta + .alpha ` matches ` .beta ` followed by ` .alpha ` ._ <br >
170- _ avoid these cases when you disable ` :is() ` _ <br >
171- _ writing the selector without nesting is advised here _
170+ _ avoid these cases when you disable ` :is() ` . _ <br >
171+ _ writing the selector without nesting is advised here. _
172172
173173``` css
174174/* without nesting */
You can’t perform that action at this time.
0 commit comments