CSS3 box-sizing 属性
CSS3 box-sizing 属性在一个元素的 width 和 height 中包含 padding(内边距) 和 border(边框)。
如果在元素上设置了 box-sizing: border-box; 则 padding(内边距) 和 border(边框) 也包含在 width 和 height 中:
.div1 {width: 300px;height: 100px;border: 1px solid blue;box-sizing: border-box;}.div2 {width: 300px;height: 100px;padding: 50px;border: 1px solid red;box-sizing: border-box;}
所有元素使用 box-sizing 是比较推荐的:
* {box-sizing: border-box;}
