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
  Colspan



You can also make a cell in one row stretch across two cells in another. Like this:



Cell 1
Cell 3 Cell 4

To accomplish this, you have to use the colspan command. Just add colspan=2 to the <td>, and you'll be all set. "colspan=2" means that that cell should span across two columns.


<table border>

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

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

</table>


Previous Page Back Next Next Page


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