The element's dimension properties don't refer to the visible dimensions of an element but its actual content.
Changing the box-sizing property allows us to include the padding and borders in an element's total dimensions.
Do you see the difference? Using border-box, the dimension properties include the actual content, padding and borders (but not the margins).
Well, content-box is the default value and specifies that the dimension properties should only include the actual content.