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

CSS3实战之box-sizing

2016-04-12 00:52 671 查看
一般我们都认为border和padding都包含在width或height之内。

而现代标准的浏览器一般都认为width和height仅仅包含content,刨去了border和padding区域。

它有两个值可以取

1.content-box:width/height = border + padding + content

2.border-box: width/height = content

兼容性写法

.test{
box-sizing:border-box;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: