DUANE
10-28-2004, 11:47 PM
How would I put a border color for each individual cell? Many thanks!
Code:
<TABLE BORDERcolor="red" border="5" bgcolor="white">
<TR height="100">
<TD width="200" bgcolor="aqua" bordercolor="red"> Row 1 Column 1 </TD>
<TD width="200"> Row 1 Column 2 </TD>
</TR>
<TR height="100" >
<TD> Row 2 Column 1 </TD>
<TD> Row 2 Column 2 </TD>
</TR>
<TR height="100">
<TD> Row 3 Column 1 </TD>
<TD> Row 3 Column 2 </TD>
</TR>
</TABLE>
kittycat
10-29-2004, 01:46 AM
style="border-left: 1px solid #colour;"
Add that to the td tag.
left can be changed to top, bottom, right, depending on where you want the border placed.
Add in the sides and colour/width that you want for that cell. If you want all sides to have the same border then you can simply use border: 1px solid #colour;
Colombian431
10-29-2004, 05:44 AM
style="border-left: 1px solid #colour;"
Add that to the td tag.
left can be changed to top, bottom, right, depending on where you want the border placed.
Add in the sides and colour/width that you want for that cell. If you want all sides to have the same border then you can simply use border: 1px solid #colour;
if you want the text color in the TD to be difference what wud be the code to change font and color?
DUANE
10-29-2004, 10:03 AM
style="border-left: 1px solid #colour;"
Add that to the td tag.
left can be changed to top, bottom, right, depending on where you want the border placed.
Add in the sides and colour/width that you want for that cell. If you want all sides to have the same border then you can simply use border: 1px solid #colour;
That did the trick......many thanks.
Much appreciated.
Have a great day.
if you want the text color in the TD to be difference what wud be the code to change font and color?
style="color: #000000; font: normal bold 12px arial;"
enter into any TD as desired.
change values as desired.
Colombian431
10-29-2004, 09:24 PM
style="color: #000000; font: normal bold 12px arial;"
enter into any TD as desired.
change values as desired.
Thanks again , your awesome