forked from Chalarangelo/30-seconds-of-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dac3814
commit 82a94e1
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
title: Scrollbar width | ||
tags: browser | ||
expertise: beginner | ||
cover: blog_images/violin.jpg | ||
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 | ||
``` |