content
padding
border
margin
常见问题:
W3C盒子下的width height和 IE盒子下的width height?
W3C盒子下的width height padding内部的区域,即content
IE盒子下的width height margin内部的区域,即content+padding+border
CSS3的解决方案
/*以border为盒子界*/ box-sizing: border-box;
原文:http://www.cnblogs.com/WeWeZhang/p/5824364.html