- margin > border > padding > content < padding < border < margin
- default behaviour, the
widthproperty sets the width of thecontent
- on adding
box-sizing: border-box, the width will be calculated including the padding and border- note: margin size is NOT included
- because margin is spacing between elements and can impact other elements as well
- recommended to add this to all projects