📅  最后修改于: 2022-03-11 14:47:55.582000             🧑  作者: Mango
.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. */
}