Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1485864

    How do i merge cell in Table element?

    #1485868

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.