Home > AI > Language > CSS >

box-sizing

box-sizing: border-box
// means the width is final, including padding and border
box-sizing: content-box
// means the width only specifies the content

Leave a Reply