573 B
573 B
title, type, language, tags, cover, author, dateModified
| title | type | language | tags | cover | author | dateModified | |
|---|---|---|---|---|---|---|---|
| Scrollbar width | snippet | javascript |
|
violin | chalarangelo | 2022-07-16T05:00:00-04:00 |
Calculates the width of the window's vertical scrollbar.
- Use
Window.innerWidthto get the interior width of the window. - Use
Element.clientWidthto get the inner width of theDocumentelement. - Subtract the two values to get the width of the vertical scrollbar.
const getScrollbarWidth = () =>
window.innerWidth - document.documentElement.clientWidth;
getScrollbarWidth(); // 15