Table Defenition
The table element defines the table.
The tr element defines a table row.
The td element defines a data cell. These must be enclosed in tr tags
For ex:<table>
<tbody><tr>
<td>Row 1, cell 1</td>
<td>Row 1, cell 2</td>
<td>Row 1, cell 3</td>
</tr>
<tr>
<td>Row 2, cell 1</td>
<td>Row 2, cell 2</td>
<td>Row 2, cell 3</td>
</tr>
</tbody></table>
The tr element defines a table row.
The td element defines a data cell. These must be enclosed in tr tags
For ex:<table>
<tbody><tr>
<td>Row 1, cell 1</td>
<td>Row 1, cell 2</td>
<td>Row 1, cell 3</td>
</tr>
<tr>
<td>Row 2, cell 1</td>
<td>Row 2, cell 2</td>
<td>Row 2, cell 3</td>
</tr>
</tbody></table>
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home