nmretd
Oct 27th, 2000, 09:17 AM
Is it possible to change the BORDERCOLOR of a table in Netscape ?
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