JSFiddle - React, Tailwind, and code Playground
by ajthomascouk
HTML
<div class="wrapper">
<a href="" class="item">Item</a>
<a href="" class="item">Item</a>
<a href="" class="item">Item</a>
<a href="" class="item">Item</a>
<a href="" class="item">Item</a>
<a href="" class="item">Item</a>
</div>
CSS
.wrapper {
width: 100%;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
.item {
width: 200px;
height: 200px;
display:block;
}