Performance: Class selectors
LOW IMPACT
Class selectors affect how quickly the browser matches CSS rules to HTML elements during style calculation.
.title { color: blue; }
.container .header .title { color: blue; }
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| .title | Minimal DOM checks | 0 | Low | [OK] Good |
| .container .header .title | Multiple DOM ancestor checks | 0 | Low | [!] Caution |