Last active
July 25, 2023 07:27
-
-
Save u12206050/c26854b9df8b03cbf434f96216017cb6 to your computer and use it in GitHub Desktop.
Horizontal scroll snap container
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
.scroll-snap-x-container { | |
display:flex; | |
overflow-x: scroll; | |
-ms-overflow-style: none; | |
scrollbar-width: none; | |
-ms-scroll-snap-type: x mandatory; | |
scroll-snap-type: x mandatory | |
} | |
.scroll-snap-x-child { | |
flex-shrink: 0; | |
scroll-snap-align: center | |
} | |
.scroll-snap-x-container-4 { | |
scroll-padding: 2rem; | |
} | |
.scroll-snap-x-child--start { | |
scroll-snap-align: start | |
} | |
@media sm { | |
.scroll-snap-x-container { | |
display: block; | |
} | |
} | |
.hide-scrollbar { | |
-ms-overflow-style: none; /* for Internet Explorer, Edge */ | |
scrollbar-width: none; /* for Firefox */ | |
overflow-y: scroll; | |
} | |
.scroll-snap-x-container::-webkit-scrollbar, | |
.hide-scrollbar::-webkit-scrollbar | |
{ | |
display: none; /* for Chrome, Safari, and Opera */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment