Kebab file names

This commit is contained in:
Angelos Chalaris
2023-04-27 21:58:35 +03:00
parent 1d189c709a
commit 61200d90c4
440 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,23 @@
---
title: Scrollbar width
tags: browser
cover: violin
author: chalarangelo
firstSeen: 2022-07-16T05:00:00-04:00
---
Calculates the width of the window's vertical scrollbar.
- Use `Window.innerWidth` to get the interior width of the window.
- Use `Element.clientWidth` to get the inner width of the `Document` element.
- Subtract the two values to get the width of the vertical scrollbar.
```js
const getScrollbarWidth = () =>
window.innerWidth - document.documentElement.clientWidth;
```
```js
getScrollbarWidth(); // 15
```