Pramod
Pramod

Reputation: 3

Html Table col and row span issue

Can anyone help me on the following table structure:

click here to see the table structure

I was unable to achieve that table structure using table row and colspans Can anyone help me on that...

Upvotes: 0

Views: 66

Answers (1)

Ravi Ubana
Ravi Ubana

Reputation: 395

Try this

<table border="2">
    <tr>
        <td colspan="2" rowspan="5">r5 c2</td>
        <td>c2</td>
    </tr>
    <tr>
        <td>c2</td>
    </tr>
    <tr>
        <td>c2</td>
    </tr>
    <tr>
        <td>c2</td>
    </tr>
    <tr>
        <td rowspan="2">c2 r2</td>
    </tr>
    <tr>
        <td>c1</td>
        <td>c1</td>
    </tr>
</table>

Upvotes: 1

Related Questions