<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="gbk">
<style type="text/css">
.base_class {
width: 100px;
height: 100px;
padding: 10px;
margin: 20px;
border: 5px solid #ffff00;
background-color: gray;
}
</style>
</head>
<body>
<div class="base_class" style="box-sizing:border-box">border-box</div>
<div class="base_class" style="box-sizing:content-box">content-box 是默认值</div>
<div class="base_class " style="box-sizing:padding-box" >padding-box(firefox支持)</div>
<div class="base_class" style="box-sizing:inherit">继承父亲元素</div>
</body>
</html>
<html>
<head>
<title></title>
<meta charset="gbk">
<style type="text/css">
.base_class {
width: 100px;
height: 100px;
padding: 10px;
margin: 20px;
border: 5px solid #ffff00;
background-color: gray;
}
</style>
</head>
<body>
<div class="base_class" style="box-sizing:border-box">border-box</div>
<div class="base_class" style="box-sizing:content-box">content-box 是默认值</div>
<div class="base_class " style="box-sizing:padding-box" >padding-box(firefox支持)</div>
<div class="base_class" style="box-sizing:inherit">继承父亲元素</div>
</body>
</html>