CSS3 has two box-models. content-box and border-box. content-box is the default.
content-box
content-box is the default CSS box-model since CSS version 1. When using content-box, only the content of the box is taken in effect when calculating the width of the box. In the reference below, content-box is referred to as the W3C box model.
border-box
border-box is the ported version of the Microsoft box model. In Internet Explorer 5 and below (IE6 in Quirks mode), IE considered the width of the element as being the combined width of the border, padding and content area of the box. In the reference below, border-box is referred to as the W3C box model.
No element uses the border-box box model unless specified via the box-sizing property, as such:
box-sizing: border-box;
Reference Image
