您的位置:首页 > Web前端 > CSS

css3 box-sizing属性

2016-06-29 21:38 761 查看
box-sizing属性有3个值:content-box(default),border-box,inherit。

content-box:border和padding不计算入width之内

inherit:继承于父级

<style type="text/css">
div{
height:100px;
width: 100px;
padding:10px;
border: 5px solid #000000;
color:red;
font-size: 14px;
text-align: center;
}
.content-box{
box-sizing: content-box;
}
.border-box{
box-sizing: border-box;
}
</style>


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: