Box Model

The Box Model

Content Box vs Border Box

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?