bagwandin
Member
Posted 4 years ago #
Hi
I have created an html table with one row and 3 cells. I need help in creating a cell border. I have no trouble creating a table border, but I need help with the code for individual cell border - I need a thin black border around each cell. Any assistance is greatly appreciated.
thanks
Here is code for a 3 column, one row table with a blue table border and black cell borders. You should be able to figure it out from this.
<table border="1" width="100%" bordercolor="#0000FF">
<tr>
<td bordercolor="#000000"> </td>
<td bordercolor="#000000"> </td>
<td bordercolor="#000000"> </td>
</tr>
</table>
bagwandin
Member
Posted 4 years ago #
Thanks - will give it a try.