Home  >  Article  >  Web Front-end  >  css布局box-sizing使用_html/css_WEB-ITnose

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

WBOY
WBOYOriginal
2016-06-24 11:46:52957browse

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;

 

}

 

 

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn