当前位置:Gxlcms > html代码 > css布局box-sizing使用_html/css_WEB-ITnose

css布局box-sizing使用_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:19人阅读

div{

box-sizing:border-box;

width:200px;

padding:20px;

border:1px solid red;

}

这段css的意思是说,div宽度为200px,边框为1px,左右空白边距是20px,时间内容宽度自适应,是200-2-20*2=158px;

如果box-sizing的值为content-box,说明设置的是内容区的宽度,不是div盒子的宽度;

浏览器兼容性:

ie8以上支持该属性,firefox需要加上浏览器厂商前缀-moz-,低版本的IOS和Android浏览器也需要加上-webkit-

*,*:before,*:after{

-moz-box-sizing:border-box;

-webkit-box-sizing:border-box;

box-sizing:border-box;

}

人气教程排行