-
-
Save justerror/64aee6d0e96f424071bffd87edc58574 to your computer and use it in GitHub Desktop.
Calculate scrollbar width
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @description Calculates scrollbar width | |
* @export | |
* @returns {number} Value in px | |
*/ | |
export function calcScrollbarWidth(): number { | |
const outer = document.createElement('div'); | |
outer.style.visibility = 'hidden'; | |
outer.style.width = '100px'; | |
outer.style.msOverflowStyle = 'scrollbar'; // needed for WinJS apps | |
document.body.appendChild(outer); | |
const widthNoScroll = outer.offsetWidth; | |
// force scrollbars | |
outer.style.overflow = 'scroll'; | |
// add innerdiv | |
const inner = document.createElement('div'); | |
inner.style.width = '100%'; | |
outer.appendChild(inner); | |
const widthWithScroll = inner.offsetWidth; | |
// remove divs | |
outer.parentNode.removeChild(outer); | |
return widthNoScroll - widthWithScroll; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment