|
-
Jul 15th, 2001, 07:47 PM
#1
Table
Hi,
Can any tell me is there a way to put borders to individual cell of the table in HTML
-
Jul 15th, 2001, 08:11 PM
#2
Fanatic Member
Sure you can :
Code:
<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
-
Jul 16th, 2001, 06:27 AM
#3
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
-
Jul 17th, 2001, 01:48 PM
#4
Fanatic Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|