Performance: Content area
MEDIUM IMPACT
The content area size affects layout calculations and paint times during page rendering.
div {
width: 100vw;
height: 100vh;
padding: 50px;
box-sizing: border-box;
}div {
width: 100vw;
height: 100vh;
padding: 50px;
box-sizing: content-box;
}| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Content-box with padding and 100vw/100vh | 1 element | Multiple on resize | High due to overflow | [X] Bad |
| Border-box with padding and 100vw/100vh | 1 element | Single on resize | Lower paint cost | [OK] Good |