例子:在網(wǎng)格布局中十分重要的屬性
<style>
div{
width:300px;
height:300px;
border:3px solid yellow;
padding:11px;
}
//這個(gè)盒子的實(shí)際(可寫內(nèi)容區(qū))寬度計(jì)算位為:300+3*2+11*2=328指蚜;
//如果我們給盒子添加:box-sizing:border-box;
//這個(gè)盒子的實(shí)際(可寫內(nèi)容區(qū))寬度計(jì)算位為:300-3*2-11*2=272;
</style>
<body>
<div></div>
</body>