Performance: Performance considerations
HIGH IMPACT
This affects how fast the page loads and how smoothly it responds to user actions by influencing rendering speed and layout stability.
.highlight { color: red; } /* specific class selector applied only where needed */
body * { color: red; } /* very broad selector applying to all elements */| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Broad universal selectors | High (all elements matched) | Many reflows if styles change | High paint cost | [X] Bad |
| Specific class selectors | Low (only targeted elements) | Minimal reflows | Low paint cost | [OK] Good |