I am trying to arrange two divs next to each other, each containing a title and a list of items. Here is an example:
<div>
<span>list of sources</span>
<select size="10">
<option />
<option />
<option />
</select>
</div>
<div>
<span>list of destinations</span>
<select size="10">
<option />
<option />
<option />
</select>
</div>
While it's easy to accomplish this with tables, I prefer not to use them. How can I achieve the desired layout?