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 1 | Cell 1 2 | Cell 1 3 |
Cell 2 1 | Cell 2 2 | Cell 2 3 |
Cell 3 1 | Cell 3 2 | Cell 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 1 | Cell 1 2 | Cell 1 3 |
Cell 2 1 | Cell 2 2 | Cell 2 3 |
Cell 3 1 | Cell 3 2 | Cell 3 3 |
Cell 1 1 | Cell 1 2 | Cell 1 3 |
Cell 2 1 | Cell 2 2 | Cell 2 3 |
Cell 3 1 | Cell 3 2 | Cell 3 3 |