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;
}
http://jsfiddle.net/mblase75/HhecV/2/
Post a Comment for "Using JQuery To Add Scrolling To A Flat UL List"