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.
13 lines
381 B
13 lines
381 B
11 years ago
|
// 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;
|
||
|
});
|