Reputation: 4984
Can I have a table with few rows in which the second row to start under the second column? Something like this:
+-----------+----------------+
| | |
| | |
+-----------+----------------+
| |
| |
+-----------+----------------+
| | |
| | |
+-----------+----------------+
Upvotes: 1
Views: 3700
Reputation: 650
You could have:
<tr><td>Content1</td><td>Content2</td>
<td> </td><td>Content3</td>
<td>Content4</td><td>Content5</td></tr>
This may be what you're looking for.
Upvotes: 1
Reputation: 17295
No, you cannot. But you can make it look like so by using right border and background colors.
Working example: http://jsfiddle.net/gkuQD/
Upvotes: 2