Performance: CSS syntax and rules
MEDIUM IMPACT
This affects how quickly the browser can parse and apply styles, impacting page load and rendering speed.
.nav-link:hover { color: red; }
div > ul > li > a:hover { color: red; }
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Deep complex selectors | High (many matches) | Medium (style recalculation) | Medium | [X] Bad |
| Simple class selectors | Low (direct match) | Low | Low | [OK] Good |