PDA

Click to See Complete Forum and Search --> : HTML Question on BORDERCOLOR Property


nmretd
Oct 27th, 2000, 09:17 AM
Is it possible to change the BORDERCOLOR of a table in Netscape ?

Oct 27th, 2000, 10:23 AM
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