Hi i'm Floyd and i am going teach you how to use Tables Hi i'm Floyd and in this lesson we are going to learn how to use Tables IofM.net Free Internet Service Provider for the Isle of Man
 



Working with Tables


Introduction
Rows and Cells
Your first Table
Colspan
Rowspan
Alignment
Cell Spacing
Table Tricks
  Rowspan



You can also do this:



Cell 1 Cell 2
Cell 3

Just add rowspan=2 to the <td>, like so:


<table border>

<tr>
<td rowspan=2>Cell 1</td>
<td>Cell 2</td>
</tr>

<tr>
<td>Cell 3</td>
</tr>

</table>

See? "Rowspan=2" means the cell should span across two rows. Just remember that rows run horizontally and columns run vertically. So if you want to stretch a cell horizontally, use colspan. To stretch a cell vertically, use rowspan.


Previous Page Back Next Next Page


Index / Lesson One / Lesson Two / Lesson Three / Lesson Four