I have this set up:
<div>
<div>
</div>
<div>
</div>
<div>
</div>
</div>
the inner divs has this CSS:
float: left;
margin-right: 40px;
width: 100px;
the outer divs have this:
overflow-x: scroll;
height: 275px;
width: 300px;
The divs contain a list of input checkboxes. I want them to keep sliding right and then a horizontal scrollbar show. instead, the div's wrap. So now they are vertical and I am scrolling vertically instead. How can I make them keep going to the right?