Performance: First CSS stylesheet
MEDIUM IMPACT
This affects the page's initial load speed and how quickly styles are applied to content, impacting the first visible paint.
<link rel="stylesheet" href="small-styles.css" media="all">
@import url('large-styles.css'); body { background: white; }
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| @import large CSS | Minimal | 0 before CSS loads | Blocks paint until CSS loads | [X] Bad |
| Direct <link> to small CSS | Minimal | 0 before CSS loads | Paints quickly after CSS loads | [OK] Good |