Reputation: 33
Here is my code for html table I want the table mention in below link using rowspan and colspan.
<table style="width: 90%;margin-left:auto; margin-right:auto;">
<tr style="text-align: center">
<td rowspan="2">HSN/SAC</td>
<td rowspan="2">Taxable Value</td>
<td colspan="2">Central Tax</td>
<td colspan="2">State Tax</td>
<td rowspan="2">Total <br> Tax Amount</td>
</tr>
<tr style="text-align: center">
<td>Rate</td>
<td>Amount</td>
<td>Rate</td>
<td>Amount</td>
</tr>
<tr style="text-align: center">
<td>123456</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td style="text-align: right">Total</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="7" style="height:100px">
<tr>
<td></td>
</tr>
</td>
</tr>
</table>
I want the table mention in below link using rowspan and colspan. Thank you
Upvotes: 1
Views: 90
Reputation: 73
You can try this
<tr>
<td style="height:40px;border-bottom:0px;" colspan="7">
</td>
</tr>
<tr style="height:4px">
<td colspan="3" style="border-top:0px; border-right:0px">
Some Text
</td>
<td style="height:80px; text-align: center;" colspan="4">
signature and stamps
</td>
</tr>
Upvotes: 1
Reputation: 2761
<table border="1px" style="width: 90margin-left:auto; margin-right:auto;">
<tr style="text-align: center">
<td rowspan="2">HSN/SAC</td>
<td rowspan="2">Taxable Value</td>
<td colspan="2">Central Tax</td>
<td colspan="2">State Tax</td>
<td rowspan="2">Total <br> Tax Amount</td>
</tr>
<tr style="text-align: center">
<td>Rate</td>
<td>Amount</td>
<td>Rate</td>
<td>Amount</td>
</tr>
<tr style="text-align: center">
<td>123456</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td style="text-align: right">Total</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></>
</tr>
<tr>
<td style="height:30px;border-bottom:0px;" colspan="7"></td>
</tr>
<tr style="height:4px">
<td colspan="3" style="border-top:0px; border-right:0px"></td>
<td style="height:80px" colspan="4"></td>
</tr>
</table>
Upvotes: 1