Kotak perbatasan ukuran kotak vs CSS Konten CSS
.div1{
box-sizing: content-box; /* This is the default value. The padding and border are not included in element’s width and height. */
}
.div2{
box-sizing: border-box; /* The padding and border are included in the element’s width and height. */
}
Glorious Gnat