Hi,
I want to marge two columns in my data table. I am trying to use colspan in my table. But not working.
Can you please help me?
you can do that with HTML Table colspan and rowspan
Here is the example
You can learn more with our tutorial about HTML Table Colspan and Rowspan
#tapgen
you can do that with HTML Table colspan and rowspan
Here is the example
<tr>
<td colspan="3">This cell spans 3 columns</td>
</tr>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
</table>
You can learn more with our tutorial about HTML Table Colspan and Rowspan
#tapgen