snap-slider
Version:
Lightweight, easily customizable slider
23 lines (19 loc) • 380 B
CSS
.rw-slider {
position: relative;
}
.rw-track {
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: none;
scroll-snap-type: x mandatory;
scrollbar-width: none;
white-space: nowrap;
}
.rw-track::-webkit-scrollbar {
height: 0;
}
.rw-slide {
display: inline-block;
scroll-snap-align: start;
white-space: normal;
}