|
-
Oct 27th, 2000, 09:17 AM
#1
Thread Starter
Addicted Member
Is it possible to change the BORDERCOLOR of a table in Netscape ?
-
Oct 27th, 2000, 10:23 AM
#2
You could try doing it with styles, which may or not be supported depending on browser and version like so:
<TABLE BORDER=1 STYLE="{ border-color: '0000FF'; }">
<TR><TD>Hello World!</TD></TR>
</TABLE>
For even more control try something like:
<TABLE STYLE="{ border-color: '0000FF'; border-style: solid; border-width: 2px; }">
<TR><TD>Hello World!</TD></TR>
</TABLE>
Paul
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
|