FONT and TABLE

FONT Tag does not span Table Cells

Dynamic size, border set to one I tried to make all the cells in row one have a font colour of red using

<tr>
<font color="red">
<td>Cell 1 1</td> <td>Cell 1 2</td> <td>Cell 1 3</td>
</font>
</tr>

Cell 1 1Cell 1 2Cell 1 3
Cell 2 1Cell 2 2Cell 2 3
Cell 3 1Cell 3 2Cell 3 3

That didn't work. Setting the colour for each cell does. Just set two cells only.

<tr> 
<td> <font color="red"> Cell 1 1 </font> </td> <td> <font color="red"> <td>Cell 1 2 </font> </td> 
<td>Cell 1 3</td>
 </tr>
Cell 1 1Cell 1 2Cell 1 3
Cell 2 1Cell 2 2Cell 2 3
Cell 3 1Cell 3 2Cell 3 3

FONT surrounding the whole Table

Cell 1 1Cell 1 2Cell 1 3
Cell 2 1Cell 2 2Cell 2 3
Cell 3 1Cell 3 2Cell 3 3

Back to Lecture 4