I simply want to achieve the effect where the left column has two merged rows and the one on right has none. How can I achieve this layout?
The html table will look like –
<table border="1" >
<tr>
<td rowspan="2">Div 1</td>
<td> Div 2 </td>
</tr>
<tr>
<td>Div3</td>
</tr>
</table>
Edit: I want to acheive this using Div. I would be putting User control in each div element. It is important that Div3 starts below div2 but not below Div1.
[Sorry, this is first post so cannot add image]
Thanks.
CSS
Demo: http://www.sitepoint.com/rowspans-colspans-in-css-tables/