Created
October 31, 2021 08:10
-
-
Save francoisgeorgy/fe085c6067d978535907f20c92435208 to your computer and use it in GitHub Desktop.
CSS scrollbar #css
This file contains hidden or 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
| /* | |
| - https://www.bram.us/2021/07/23/prevent-unwanted-layout-shifts-caused-by-scrollbars-with-the-scrollbar-gutter-css-property/ | |
| - https://codepen.io/bramus/pen/LYyzKrX | |
| */ | |
| .scrollbar-gutter-auto { | |
| scrollbar-gutter: auto; | |
| } | |
| .scrollbar-gutter-stable { | |
| scrollbar-gutter: stable; | |
| } | |
| .scrollbar-gutter-stable-both { | |
| scrollbar-gutter: stable both-edges; | |
| } | |
| @supports(scrollbar-gutter: auto) { | |
| .warning { | |
| display: none; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment