如何使用Modernizr检测盒子大小的边框支持

时间:2013-05-23 18:59:32

标签: javascript css modernizr

我的盒子在Firefox 16及更低版本中无法正确显示,似乎缺乏对盒子大小边框的支持。

如何使用Modernizr检测框尺寸边框支持,并对不支持它的浏览器区别对待css?

1 个答案:

答案 0 :(得分:2)

Modernizr不会在其默认构建中包含框大小调整测试。这是他们的核心演员之一。

看看这个:

How to use Modernizr classes?

我认为它有你想要的东西:

// The first argument is the class name
Modernizr.addTest("boxsizing", function() {
    return Modernizr.testAllProps("boxSizing") && (document.documentMode === undefined       
|| document.documentMode > 7);
});​​​​​​