Performance: Box model calculation
MEDIUM IMPACT
How the browser calculates element sizes and space affects layout speed and visual stability.
div {
width: 100%;
padding: 20px 15px 25px 10px;
border: 5px solid black;
box-sizing: border-box;
}div {
width: 100%;
padding: 20px 15px 25px 10px;
border: 5px solid black;
box-sizing: content-box;
}| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| content-box with padding and border | normal | multiple on resize or style change | medium | [X] Bad |
| border-box with padding and border | normal | single on resize or style change | low | [OK] Good |