In a table, cells can be merged horizontally or vertically.
Select the cells that you
wish to merge.
These must be adjacent cells.
From the Table menu of the Table window, click on the option Merge cells.
If you merge cells found on the same row, CuteHTML Pro adds the COLSPAN to that row’s TD command.
<td colspan="3"> </td>
The number "3" indicates that you merged three cells in the same row.
If you merge cells in the same column, CuteHTML Pro add the ROWSPAN to that column’s TD command:
<td rowspan="3"> </td>
The number "3" indicates that you merged three cells in the same column.<