This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// test whether or not CSS box-sizing is supported. Append the relevant classes to the html element. | |
// for reference: http://www.snackoclock.net/2012/08/simple-box-sizing-border-box-fallback-for-ie/ | |
Modernizr.addTest("boxsizing", function() { | |
return Modernizr.testAllProps("boxSizing") && (document.documentMode === undefined || document.documentMode > 7); | |
}); | |
if(!Modernizr.boxsizing){ | |
alert("No box-sizing, but we added a class for you!"); | |
} |