首页 > 代码库 > 基础 - CSS3盒模型

基础 - CSS3盒模型

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;

  

 

基础 - CSS3盒模型