Box Model
🏡 HomeThis is how the box model works. We have the content, surrounded by protective padding, encased in a border, with a margin outside of the border.
Margin
Border
Padding
Content
Content Box
content-box causes problems and it happens to be the default for the box-sizing parameter in CSS.
The child overlaps the parent because of the padding and border parameters.
Parent
Child
Border Box
This whole situation is fixed with border-box.
Parent
Child