CSS3 Box Sizing Property
content-box vs border-box
CSS allows us to change the size of the box in form of width, height, padding, border.
p{
width:400px;
height:400px;
border :20px dashed blueviolet;
background-color: darkgoldenrod;
margin: 10px;
float: left;
}
#content{box-sizing: content-box;}
#border{ box-sizing: border-box}