Sorry for the noob question but i am at this for several hours now.
I am trying to create a unordered list that the <li>
floating left. and the window's width is set.
The issue is when there is too many <li>
it wont add scrolling instead it will put the <li>
that dont fit in another line
here is an example:
<ul id="someUL">
<li> whatever </li>
<li> whatever </li>
<li> whatever </li>
</ul>
Well actually better show on fiddle.
Here is an example of what i mean in http://jsfiddle.net/eSckg/1/
My question how do i go about doing that ?