Playing with border colors

ok this one can be fun

I made the background of this page this ugly blue so you can see the colors better

lets make a 9 cell table.

<table align=center border=1 width=100%>
<tr>
<td><br></td>
<td><br></td>
<td><br></td>
</tr>
<tr>
<td><br></td>
<td><br></td>
<td><br></td>
</tr>

<tr>
<td><br></td>
<td><br></td>
<td><br></td>
</tr>
</table>
 










There are 2 sets of borders here. (1) The border that goes around the whole table and (2) the border that goes around each cell.

Lets add the numbers again to the cells so we can see what what we're doing on the next lesson.

 

1 2 3
4 5 6
7 8 9

<table align=center border=1 width=100%>
<tr>
<td align=center>1</td>
<td align=center>2</td>
<td align=center>3</td>
</tr>
<tr>
<td align=center>4</td>
<td align=center>5</td>
<td align=center>6</td>
</tr>

<tr>
<td align=center>7</td>
<td align=center>8</td>
<td align=center>9</td>
</tr>
</table>