910 B
910 B
Box-sizing reset
Resets the box-model so that widths and heights are not affected by their borders 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 element'swidthorheight.box-sizing: inheritmakes an element respect its parent'sbox-sizingrule.
Browser support
✅ No caveats.