| Tag |
Tag attribute |
Function |
| <table> |
|
Starts a table. |
| |
border="..." |
The size of the border, if used. |
| |
cellspacing="..." |
The amount of space between the cells of a table. |
| |
cellpadding="..." |
The amount of space between the inner edges of a cell and its content. |
| |
width="..." |
Sets the width of the table. |
| <tr> |
|
Establishes a table row. Use </tr> to close one row before starting the next. |
| |
align="..." |
Horizontal alignment of cells content in the row. Values are left, right, and center. |
| |
valign="..." |
Vertical alignment of cells content in all cells in this row. Values are top, middle, bottom, and baseline. |
| <td> |
|
Establishes a table data cell. Your content goes in the TD cells. Use </td> to close a td cell before starting the next. |
| |
width="..." |
Sets the width of this column of cells, in pixels or as a percentage of table width. |
| |
align="..." |
Horizontal alignment of cells content. Values are top, middle, bottom, and baseline. |
| |
valign="..." |
Vertical alignment of cells content. Values are top, middle, bottom, and baseline. |
| </td> |
|
Ends the table data cell. |
| </tr> |
|
Ends the table row. |
| </table> |
|
Ends the table. |