Performance: Nth-child selector
MEDIUM IMPACT
This affects CSS selector matching speed and can impact rendering performance when used on large DOM trees.
ul li { background-color: white; } ul li:nth-child(3n) { background-color: lightblue; }ul li:nth-child(3n) { background-color: lightblue; }
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| ul li:nth-child(3n) | Checks every li element | 0 | Low | [OK] |
| ul li.simple-class | Checks only elements with class | 0 | Low | [OK] Good |