I have inline-block divs however when they reach end of the screen, they go the next line instead of scrolling horizontally, can someone help me out? here is a fiddle
Hide the y overflow and use nowrap
.dx { height: 100px; overflow-y: hidden; white-space: nowrap; width: 100%; }
FIDDLE