Possible Duplicate:
Horizontal scroller in CSS
I have a 320px wide DIV. There's a UL LI navigation inside, where each LI is floated left to display them in a single line. I want them to stack next to each other and display a scrollbar at the bottom of the parent DIV to scroll the content horizontally.
- I don't know the number of
LIs (dynamically generated) - I don't know the width of
UL(dynamically generated) - Multiple items have to be visible at once, not just one at a time!
I'd like to use CSS-only method to solve this.
#menu { width: 320px; overflow: scroll; } ul li { float: left; display: block; } <div id="menu"> <ul> <li><a href="#">Car</a></li> <li><a href="#">Very long text item</a></li> <li><a href="#">Foobar foobar</a></li> </ul> </div>
Problem: it doesn't work. No horizontal scrollbar. Floats wrap and stack in multiple lines in the parent DIV.