Performance: Align content
MEDIUM IMPACT
Align content affects how extra space is distributed in a container with multiple lines, impacting layout calculation and paint.
.container { display: flex; flex-wrap: wrap; align-content: flex-start; height: 500px; } .item { flex: 1 0 100px; }
.container { display: flex; flex-wrap: wrap; align-content: stretch; height: 500px; } .item { flex: 1 0 100px; }
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| align-content: stretch | medium (multiple lines) | multiple reflows | medium | [X] Bad |
| align-content: flex-start | medium (multiple lines) | single reflow | low | [OK] Good |