Miro J.
Miro J.

Reputation: 4984

Start a table cell from a second column

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

Answers (2)

Andreas Christodoulou
Andreas Christodoulou

Reputation: 650

You could have:

<tr><td>Content1</td><td>Content2</td>
<td>&nbsp;</td><td>Content3</td>
<td>Content4</td><td>Content5</td></tr>

This may be what you're looking for.

Upvotes: 1

Māris Kiseļovs
Māris Kiseļovs

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

Related Questions