Hi Guys
I need to align 2 divs next to each other, so that each contains a title and a list of items, similar to
<div>
<span>source list</span>
<select size="10">
<option />
<option />
<option />
</select>
</div>
<div>
<span>destination list</span>
<select size="10">
<option />
<option />
<option />
</select>
</div>
Can anyone suggest how to solve this problem? It's remarkably easy to do with tables, but I don't want to use tables!
Thanks
Dave