IE 盒模型和W3C盒模型有什么区别?
W3C标准盒模型中padding、border所占的空间不在width、height范围内
{
box-sizing: content-box;
}
IE盒模型中width、height包括content尺寸+padding+border
{
box-sizing: border-box;
}
W3C标准盒模型中padding、border所占的空间不在width、height范围内
{
box-sizing: content-box;
}
IE盒模型中width、height包括content尺寸+padding+border
{
box-sizing: border-box;
}