CSS3增加了新的盒子模型属性,用于定义盒子模型的尺寸解析方式。
box-sizing: content-box | border-box | inherit
content-box
表示元素的height
和width
为元素内边距+内容。
border-box
则表示元素的height
和width
为元素的外边距+内边距+内容。
inherit
则表示继承父元素的盒子模型模式
CSS3增加了新的盒子模型属性,用于定义盒子模型的尺寸解析方式。
box-sizing: content-box | border-box | inherit
content-box
表示元素的height
和width
为元素内边距+内容。
border-box
则表示元素的height
和width
为元素的外边距+内边距+内容。
inherit
则表示继承父元素的盒子模型模式