The box-sizing property is used to tell the browser what the sizing properties (width and height) should include.Should they include the border-box? Or just the content-box (which is the default value of the width and height properties)?
box-sizing: content-box|border-box|initial|inherit;
div { width: 300px; height: 100px; border: 1px solid blue; box-sizing: border-box;}