You can split a cell in any number of columns and rows.
Select the cell you want to split;
From the Table menu, select the Split cells option;
Determine the number of columns and rows in which you want to split the cell;
Click on OK.
If you split a cell, CuteHTML Pro adds the COLSPAN attribute to the rows’ TD command:
<tr>
<td colspan="2"> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td rowspan="2"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
COLSPAN="2": indicates that the cell is divided in 2 columns.
ROWSPAN="2": indicates that the cell is divided in 2 rows.