890 B
890 B
Box-sizing Reset
Resets the box-model so that widths and heights are not affected by their borders and/or padding.
CSS
.html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
Demo
Demo
Explanation
box-sizing: border-boxmakes the addition ofpaddingorborders not affect an elementswidthand/orheight.box-sizing: inheritmakes an element respect its parentsbox-sizingrule.
Browser support
✅ No caveats.