Skip to content

Instantly share code, notes, and snippets.

@sourcegr
Last active April 3, 2019 12:30
Show Gist options
  • Save sourcegr/c7c9335842a0a17da95ec32107cba86d to your computer and use it in GitHub Desktop.
Save sourcegr/c7c9335842a0a17da95ec32107cba86d to your computer and use it in GitHub Desktop.
CSS horizontal scrolling
.container {
display: flex;
flex-wrap: nopwrap;
scroll-snap-type: x mandatory;
overflow-x: auto;
}
.element {
flex:0 0 auto;
scroll-snap-align: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment