6. box-sizing 的两个属性
参考答案
DETAILS
1、content-box
(默认值)
元素的宽度和高度仅包括内容区域(content),不包括边框(border)、内边距(padding)和外边距(margin)。
2、border-box
元素的宽度和高度包括内容区域(content)、内边距(padding)和边框(border),但不包括外边距(margin)。
content-box
(默认值)元素的宽度和高度仅包括内容区域(content),不包括边框(border)、内边距(padding)和外边距(margin)。
border-box
元素的宽度和高度包括内容区域(content)、内边距(padding)和边框(border),但不包括外边距(margin)。