Performance: Parent selector with &
LOW IMPACT
This affects CSS compilation time and the resulting CSS file size, which impacts page load speed.
.button { color: blue; &:hover { color: red; } }
.button { color: blue; } .button:hover { color: red; }
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Manual parent selector repetition | 0 | 0 | Low (larger CSS file) | [X] Bad |
| Using & parent selector in Sass | 0 | 0 | Low (smaller CSS file) | [OK] Good |