You can enable custom scrolling with -webkit-overflow-scrolling: touch;
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<style>
div {
overflow-y: hidden;
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
width: 150px;
border: 1px solid grey;
}
h1 {
width: 400px;
}
</style>
</head>
<body>
<div>
<h1>some content here</h1>
</div>
</body>
</html>
source
share