Skip to content

Instantly share code, notes, and snippets.

@csuwildcat
Last active June 30, 2017 07:01
Show Gist options
  • Save csuwildcat/ee8504c0386645e86ab32ab63788bcb5 to your computer and use it in GitHub Desktop.
Save csuwildcat/ee8504c0386645e86ab32ab63788bcb5 to your computer and use it in GitHub Desktop.
(function(node, body){
node.style.display = 'inline-block';
node.style.position = 'absolute';
node.style.height = '0';
node.style.overflow = 'scroll';
body.appendChild(node);
body.style.setProperty('--scrollbar', node.offsetWidth + 'px');
body.removeChild(node);
})(document.createElement('scrollbartester'), document.body);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment