Answer:
Border Box
Explanation:
In CSS styling, border-box tells the browser to account for any border and padding in the values you specify for an element's width and height. If you set an element's width to 80 pixels, that specified 80 pixels will include any border or padding you added, and the content box will shrink to absorb that extra width.
Cheers