File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ postcssNesting()
184184}
185185```
186186
187- _`.beta :hover ` has specificity as if `.beta` where an id selector, matching the specification._
187+ _`.beta :hover ` has specificity as if `.beta` were an id selector, matching the specification._
188188
189189[specificity: 1, 1, 0](https://polypane.app/css-specificity-calculator /#selector=%3Ais(%23alpha%2C.beta )%3Ahover)
190190
@@ -202,7 +202,7 @@ postcssNesting({
202202}
203203```
204204
205- _`.beta :hover ` has specificity as if `.beta` where a class selector, conflicting with the specification._
205+ _`.beta :hover ` has specificity as if `.beta` were a class selector, conflicting with the specification._
206206
207207[specificity: 0, 2, 0](https://polypane.app/css-specificity-calculator /#selector=.beta%3Ahover )
208208
@@ -246,8 +246,8 @@ postcssNesting({
246246```
247247
248248_ this is a different selector than expected as ` .beta + .alpha ` matches ` .beta ` followed by ` .alpha ` ._ <br >
249- _ avoid these cases when you disable ` :is() ` _ <br >
250- _ writing the selector without nesting is advised here _
249+ _ avoid these cases when you disable ` :is() ` . _ <br >
250+ _ writing the selector without nesting is advised here. _
251251
252252``` css
253253/* without nesting */
You can’t perform that action at this time.
0 commit comments