Hi,
Can any tell me is there a way to put borders to individual cell of the table in HTML
Printable View
Hi,
Can any tell me is there a way to put borders to individual cell of the table in HTML
Sure you can :
In order for this to work you have to make sure that you have a BORDER or 1 or greater. The above code can produce some interesting effects if you have the BODY BGCOLOR set to the same color as the BORDERCOLOR of the table. The main table BORDER seems to disappear with the individual cells outlined.Code:<table BORDER = "1" BORDERCOLOR = "white">
<tr>
<td BORDERCOLOR = "blue"></td>
</td>
</table>
Chris
Hi,
Thank you for your suggestion but the same is not working when I open in Netscape Navigator. Any good suggestions or fixes please......................
Thank you
Neti
You could try to set it in a style sheet:
<style TYPE = "text/css">
.redBorder {border-color:red;}
.blueBorder {border-color:blue;}
</style>
Then set the CLASS = "redBorder" in a <TD> tag. <td CLASS = "redBorder">
Just another one of Netscapes short comings.
Chris