How do you accomplish the following HTML table
using div
's and css
?
<table border="1">
<tbody>
<tr>
<td rowspan="2">Form Location</td>
<td rowspan="1">Filter Location</td>
</tr>
<tr>
<td rowspan="1">Data Location</td>
</tr>
</tbody>
</table>