HTML
<div class=”horizontal_scrollbar”>
<div class=”horizontal_scrollbar_inner”>
How to make a div scrollable horizontally?
</div>
</div>
CSS
.horizontal_scrollbar {
background: #fff;
overflow-x: scroll;
width: 500px;
padding: 10px;
}
.horizontal_scrollbar_inner {
width: 800px;
}
Horizontal Scrollbar Demo