Interactive tool to understand the difference between content-box and border-box models.
/* Box 1 */
.content-box {
box-sizing: content-box;
width: 200px;
height: 150px;
padding: 20px;
border: 10px solid #4338ca;
}
/* Box 2 */
.border-box {
box-sizing: border-box;
width: 200px;
height: 150px;
padding: 20px;
border: 10px solid #065f46;
}