Tagged: merge table
How do i merge cell in Table element?
Hey minhndq,
Thank you for the inquiry.
Unfortunately, the Table element doesn’t support cell merging out of the box, but you can try to manually create your own table using a Code or Text Block element.
Example:
<table>
<tr>
<td>Row 1, Col 1</td>
<td>Row 1, Col 2</td>
<td>Row 1, Col 3</td>
</tr>
<tr>
<td colspan="2">Row 2, Col 1-2</td>
<td>Row 2, Col 3</td>
</tr>
<tr>
<td colspan="3">Row 3, Col 1-3</td>
</tr>
</table>
Let us know if you need more info.
Best regards,
Ismael