leora
leora

Reputation: 196439

can you have multiple columns have a rowspan in the same table

i want a table with three column and i want the first and third column to both have rowspan="3" but the second column i want data on "each" row. is this possible?

Upvotes: 1

Views: 3762

Answers (1)

tdammers
tdammers

Reputation: 20721

Yes.

<table>
<tr><td rowspan="3">1</td><td>2</td><td rowspan="3">3</td></tr>
<tr><td>4</td></tr>
<tr><td>5</td></tr>
</table>

Upvotes: 4

Related Questions