css盒模型之box-sizing
Posted 头名字W
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css盒模型之box-sizing相关的知识,希望对你有一定的参考价值。
box-sizing 属性允许你以某种方式定义某些元素,以适应指定区域。
box-sizing: content-box|border-box|inherit
content-box:指容器的边框的线的宽度不算在容器的宽高里面,在容器外绘制边框。
border-box:将容器的边框算在容器内,实际容器的宽高需要减去边框的宽度。
inherit: 继承父级的属性。
div.container width:220px;
div.box
box-sizing:content-box;
-moz-box-sizing:content-box; /* Firefox */
width:100%;
border:1em solid tan;
float:left;
background:green;
div.box
box-sizing:border-box;
width:100%;
border:1em solid tan;
float:left;
background:green;
以上是关于css盒模型之box-sizing的主要内容,如果未能解决你的问题,请参考以下文章
css盒模型(css的两种盒模型:标准盒模型怪异盒模型)和 css3指定盒子模型种类的box-sizing属性