Here is the table we left off with ion the last lesson.

1 2 3
4 5 6
7 8 9

Lets add a bordercolor statement to the <table> tag to change the color of the border around the table. lets make it red.

1 2 3
4 5 6
7 8 9

<table align=center border=1 width=100% bordercolor=#FF0000>
<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>
 

 

Adding a bordercolor statement changes all of the border colors. But lets say that we want the 5 cell to be yellow.

 

1 2 3
4 5 6
7 8 9

<table align=center border=1 width=100% bordercolor=#FF0000>
<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 bordercolor=#FFFF40>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>
 

WHOA........Pretty cool huh?

I can specify the colors of EACH cell border

ok ok...playing now

lets make the 9 cell bright green

 

1 2 3
4 5 6
7 8 9