HTML Table

The HTML Table tool creates and inserts the tag necessary to create an HTML table. The following options are available via the tool:

Rows: This value determines the number of HTML table rows - tr tags - written to the editor.

Columns: This value determines the number of HTML table columns - td tags - written for each table row

Border Size: This determines the size of the HTML table border.

Width: This determines the width of the table.

Cell Spacing: This determines the value of the HTML table cellspacing attribute.

Cell Padding: This determines the value of the HTML cell padding attribute.

The following is an example of the output generated by the HTML table tool:

<table border="1" width="200" cellspacing="3" cellpadding="4">
    <thead>
        <th></th>
        <th></th>
    </thead>
    <tbody>
        <tr>
            <td></td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
        </tr>
    </tbody>
</table>

 

HTML Table Tool