Click to See Complete Forum and Search --> : Table
amani
Jul 15th, 2001, 07:47 PM
Hi,
Can any tell me is there a way to put borders to individual cell of the table in HTML
Psyrus
Jul 15th, 2001, 08:11 PM
Sure you can :
<table BORDER = "1" BORDERCOLOR = "white">
<tr>
<td BORDERCOLOR = "blue"></td>
</td>
</table>
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.
Chris
amani
Jul 16th, 2001, 06:27 AM
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
Psyrus
Jul 17th, 2001, 01:48 PM
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
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.