Performance: Attribute selectors
MEDIUM IMPACT
Attribute selectors affect CSS matching speed and rendering performance, especially on large DOMs.
.button { color: blue; }
[data-role='button'] { color: blue; }
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| [data-role='button'] | Checks attributes on many elements | 0 (style only) | Low to medium | [X] Bad |
| .button | Matches elements by class quickly | 0 (style only) | Low | [OK] Good |