Splitting cells

You can split a cell in any number of columns and rows.

  1. Select the cell you want to split;

  2. From the Table menu, select the Split cells option;

  3. Determine the number of columns and rows in which you want to split the cell;

  4. Click on OK.

If you split a cell, CuteHTML Pro adds the COLSPAN attribute to the rows’ TD command:

<tr>
<td colspan="2">&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td rowspan="2">&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>

COLSPAN="2": indicates that the cell is divided in 2 columns.

ROWSPAN="2": indicates that the cell is divided in 2 rows.