Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 300 Bytes

he-zi-mo-xing.md

File metadata and controls

31 lines (20 loc) · 300 Bytes

盒子模型

可以通过 box-sizing 来模拟

IE盒模型:

{
    box-sizing: border-box;
}

标准盒模型:

{
    box-sizing: content-box;
}