Using Jquery To Add Scrolling To A Flat Ul List
I have this UL list:
- Home
- Copy
http://jsfiddle.net/mblase75/HhecV/
This won't make the list scrollable, but it will make the entire page scrollable. To make just the list scroll horizontally, add
overflow:auto
:LI { display:inline-block; list-style:none; } UL { white-space: nowrap; overflow: auto; }
Post a Comment for "Using Jquery To Add Scrolling To A Flat Ul List"