前端开发探路者 2016-12-01
本文介绍了css3中的box-sizing属性,在这之前读者需要预备知识width的范围。
box-sizing属性可以有三个值:content-box(defalut),border-box属性。


<style>
div{
width:100px;
height:100px;
border:20px solid yellow;
padding:20px;
background:green;
background-clip:content-box;
}
.content-box{
box-sizing:content-box;
}
.border-box{
box-sizing:border-box;
}
</style> View Code效果截图:
