Performance: Element selectors
MEDIUM IMPACT
Element selectors affect how quickly the browser matches CSS rules to HTML elements during style calculation.
.intro-text { color: blue; font-size: 1.2rem; }
p { color: blue; font-size: 1.2rem; }| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Element selector (e.g., p) | Matches all <p> elements | 0 | Low | [OK] |
| Class selector (e.g., .intro-text) | Matches fewer elements | 0 | Low | [OK] Good |