First you need to tell ul
so that it does not overflow and does not overflow into the scrollbar. Then the li
elements should not float and appear in a line. This will do it:
ul.nav { white-space: nowrap; overflow-x: auto; } ul.nav li { display: inline-block; float: none; }
Fiddle: http://jsfiddle.net/bmfcd3zt/8/
source share