How can I make an html table in this structure?
+--------------+-----+--------------+
| | | |
| CONTENT-1 | | CONTENT-2 |
|--------------| |--------------|
| | | |
| | | |
| | | |
| | | |
| | | |
+-----------------------------------+
I’ve tried with a rowspan on the tall column, but it’s not working correctly.
<table class="login_selection_button">
<tr>
<td>
CONTENT-1
</td>
<td>
CONTENT-2
</td>
</tr>
<tr>
<td>
</td>
<td rowspan="2">
</td>
<td>
</td>
</tr>
</table>
THANKS!
Set the cell with the rowspan in the first row and give it a width
http://jsfiddle.net/KyttF/1/