Sha256: 4743ad8858ff6fcd6097cbaf0011eba38856d776cca9a72cafb3be7516510f7a
Contents?: true
Size: 468 Bytes
Versions: 144
Compression:
Stored size: 468 Bytes
Contents
// Sticky positioning - constrains an element to be positioned inside the // intersection of its container box, and the viewport. Modernizr.addTest('csspositionsticky', function () { var prop = 'position:'; var value = 'sticky'; var el = document.createElement('modernizr'); var mStyle = el.style; mStyle.cssText = prop + Modernizr._prefixes.join(value + ';' + prop).slice(0, -prop.length); return mStyle.position.indexOf(value) !== -1; });
Version data entries
144 entries across 144 versions & 7 rubygems