Skip to content

Instantly share code, notes, and snippets.

@khripunovpp
Created April 16, 2017 11:26
Show Gist options
  • Save khripunovpp/7cff445ebf65a446e4990d45c881ad2e to your computer and use it in GitHub Desktop.
Save khripunovpp/7cff445ebf65a446e4990d45c881ad2e to your computer and use it in GitHub Desktop.
easy-adaptive-css-clider
.slider {
display: flex;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scroll-snap-points-x: repeat(300px);
scroll-snap-type: mandatory;
}
.slider > div {
flex-shrink: 0;
width: 300px;
height: 300px;
background: #eee;
border: 5px solid white;
display: flex;
align-items: center;
justify-content: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment