Looking to create a horizontal scrollable area for touch devices using just CSS. The current setup includes:
.wrapper {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
overflow-x: scroll;
overflow-y: hidden;
}
.inner {
width: 5000px;
height: 100%;
position: relative;
-webkit-overflow-scrolling: touch;
}
No need to go into the HTML specifics here. Any suggestions or ideas?