How can I create a layout that looks like this? (I'm willing to use tables!)
I used a table to make sure Col 1 and Col 2 were even, but now I can't figure out how to add the header / footer to the Col 2 <td>
How can I create a layout that looks like this? (I'm willing to use tables!)
I used a table to make sure Col 1 and Col 2 were even, but now I can't figure out how to add the header / footer to the Col 2 <td>
Purely because you've made it clear that you don't mind using tables for layout, here's a table based solution:
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="300" rowspan="3">Col 1</td>
<td height="30">Col 2 Header</td>
</tr>
<tr>
<td>Col 2 Content<br />Col 2 Content<br />Col 2 Content<br />Col 2 Content<br />Col 2 Content<br />Col 2 Content<br />Col 2 Content<br />Col 2 Content<br />Col 2 Content<br /></td>
</tr>
<tr>
<td height="30">Col 2 Footer</td>
</tr>
</table>