IE盒子模型

IE盒子模型实例

by jizhen tan

HTML

<div>
IE盒子模型
</div>

CSS

div {
  width: 100px;
  height: 100px;
  border: 10px solid red;
  padding: 10px;
  background: blue;
  background-clip: content-box;
  box-sizing: border-box;
}