css3 box-sizing属性 和JS 网页等比例缩放

box-sizing属性可以为三个值之一:content-box(default),border-box,padding-box。

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

padding-box,padding计算入width内

border-box,border和padding计算入width之内,其实就是怪异模式了~

 

ie8+浏览器支持content-box和border-box;

ff则支持全部三个值。

 使用时:

-webkit-box-sizing: 100px; // for ios-safari, android

-moz-box-sizing:100px; //for ff

box-sizing:100px; //for other

例:

View Code

css3 box-sizing属性 和JS 网页等比例缩放_第1张图片

网页等比例缩放


"http://www.w3.org/1999/xhtml">

    "Content-Type" content="text/html; charset=utf-8" />
    
    



    
class="div1"> "images/dota_bingyan.png" />
class="div1"> "images/dota_bingyan.png" />
class="div1"> "images/dota_bingyan.png" />
class="div1"> "images/dota_bingyan.png" />
class="div1"> "images/dota_bingyan.png" />
View Code

 

转载于:https://www.cnblogs.com/shadow-wolf/p/6265231.html

你可能感兴趣的:(css3 box-sizing属性 和JS 网页等比例缩放)