Add mention of Syntax quirks

MasterKia 2023-02-04 21:38:53 +03:30
parent 9cc46ec733
commit 050d155d27
1 changed files with 2 additions and 0 deletions

@ -1,3 +1,5 @@
See also: [Syntax quirks](./Syntax-quirks)
1- Using `:upward()` instead of `:has()` can be more performant. `:upward()` is fast, it just lookup ancestors -- there is only one parent per element, `:has()` has to lookup descendants, there can be many children per elements.
```html