<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<style>
* {
padding: 0;
margin: 0;
}
div{
width: 200px;
height: 200px;
padding: 20px;
margin: 20px;
border: 20px solid black;
}
.box-a {
background: red;
/* IE模型 */
box-sizing:border-box;
/* 红色区域面积:200-20*2 = 160 */
}
.box-b {
background: green;
/* 标准模型 */
box-sizing:content-box;
/* 绿色区域面积:200+20*2 = 240 */
}
</style>
</head>
<body>
<div class="box-a"></div>
<div class="box-b"></div>
</body>
</html>
以上代码的效果如下:
红色区域面积:200-20*2 = 160;宽度减去2倍的边框。
绿色区域面积:200+20*2 = 240;宽度加上2倍的内边距。
标签:box,200,20,代码,面积,绿色,20px,border,CSS From: https://blog.51cto.com/u_15959833/6046857