Code: Select all
<table>
<tr>
<td>content</td>
<td>content 2</td>
</tr>
</table>Code: Select all
content content2These divs will be nested inside a larger one. But I can't use float, because the table I'm putting them in is using percentages, and often times will be out of proportion.
I'm looking to do something like this:
Code: Select all
<div>
<div>Left div</div>
<div>Right div</div>
</div>