Created
April 16, 2017 11:26
-
-
Save khripunovpp/7cff445ebf65a446e4990d45c881ad2e to your computer and use it in GitHub Desktop.
easy-adaptive-css-clider
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
.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