--- title: Box-sizing reset tags: layout,beginner --- Resets the box-model so that `width` and `height` are not affected by `border` or `padding`. - `box-sizing: border-box` makes the addition of `padding` or `border`s not affect an element's `width` or `height`. - `box-sizing: inherit` makes an element respect its parent's `box-sizing` rule. ```html