How do you make a border around only one cell in a table using html code?

  • Thread starter Thread starter Charles Peter
  • Start date Start date
C

Charles Peter

Guest
For example, I am trying to make a thick border only around the cell that has the text 'Link5' in it.

<table width="1000" height="217" border="none" cellpadding="5px" cellspacing="25">
<tr>
<td bgcolor="#99CCFF" width="343"><center>Link1</center></td>
<td bgcolor="#99CCFF" width="288"><center>Link2</center></td>
<td bgcolor="#99CCFF" width="259"><center>Link3</center></td>
</tr>
<tr>
<td bgcolor="#99CCFF"><center>Link4</center></td>
<td bgcolor="#99CCFF"><center>Link5</center></td>
<td bgcolor="#99CCFF"><center>Link6</center></td>
</tr>
<tr>
<td bgcolor="#99CCFF"><center>Link7</center></td>
<td bgcolor="#99CCFF"><center>Link8</center></td>
<td bgcolor="#99CCFF"><center>Link9</center></td>
</tr>
</table>

Any help would be very much appreciated.

Thanks.
 
Back
Top