Skip to content

Instantly share code, notes, and snippets.

@fredchu
Last active October 26, 2015 05:10
Show Gist options
  • Save fredchu/466ade10bef487f1c63e to your computer and use it in GitHub Desktop.
Save fredchu/466ade10bef487f1c63e to your computer and use it in GitHub Desktop.
Check if CSS calc() is available using JavaScript and Modernizr
Modernizr.addTest('csscalc', function() {
var prop = 'width:';
var value = 'calc(10px);';
var el = document.createElement('div');
el.style.cssText = prop + Modernizr._prefixes.join(value + prop);
return !!el.style.length;
});
// ref http://stackoverflow.com/questions/14125415/how-can-i-check-if-css-calc-is-available-using-javascript
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment