<div id='wrapper'>
<ul>
<li><img src='1.jpg' /></li>
<li><img src='2.jpg' /></li>
<li><img src='3.jpg' /></li>
<li><img src='4.jpg' /></li>
<li><img src='5.jpg' /></li>
</ul>
</div>
#wrapper {
width: 300px;
height: 55px;
overflow: auto;
}
li {
float: left;
}
above is the gist of my html and css and currently the auto-scroll creates a vertical only scrollbar. I would like to make it so that it creates a horizontal only scrollbar, how would I do this?