CSS盒子模型包含2种:
-
W3C标准盒子模型(
box-sizing: content-box
默认值) -
IE怪异盒子模型 (
box-sizing: border-box
)
W3C标准盒子模型
标准盒模型的 width 和 height 属性的范围只包含了 content,因此宽高不受 padding、border 影响
div的width = content的width
div的height = content的height
IE怪异盒子模型
IE怪异盒子模型的 width 和 height 属性的范围包含了 border、padding 和 content,因此宽高受 padding 、 border 影响
div的width = content的width + padding-left + padding-right + border-left + border-right
div的height = content的height + padding-top + padding-bottom + border-top + border-bottom
CSS3 指定盒子模型种类
IE5.5及更早的版本使用的是IE盒模型(这意味着此盒模型问题只会出现在IE5.5及其更早的版本中)。
IE6及其以上的版本在标准兼容模式下使用的是W3C的盒模型标准。只要为文档设置一个DOCTYPE
,就会使得IE遵循标准兼容模式的方式工作。