You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
381 B
12 lines
381 B
// Method of allowing calculated values for length units, i.e. width: calc(100%-3em) http://caniuse.com/#search=calc
|
|
// By @calvein
|
|
|
|
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;
|
|
});
|
|
|