Box Model

Content Box vs Border Box

Setting the box-sing for all elements
html{
box-sizing: border-box;
}
*,
*:before,
*:after{
box-sizing: inherit;
}
Last updated
Was this helpful?
html{
box-sizing: border-box;
}
*,
*:before,
*:after{
box-sizing: inherit;
}
Last updated
Was this helpful?