I can't quite recall where I've encountered this concept before, but I do know that there must be a method for creating a horizontal scroll.
Imagine you have multiple DIVs in the following structure:
<div class="container">
<div>Content</div>
<div>Content</div>
<div>Content</div>
<div>Content</div>
<div>Content</div>
</div>
I am searching for a way to align them horizontally without causing them to shift to the next line. Instead, I would like there to be a horizontal scroll bar rather than a vertical one.
Usually, if I were to use float:left or display:inline, once the divs take up sufficient space horizontally, they would move to the next line. Is there any solution to keep them in a straight horizontal line and create a horizontal scroll for overflow?