Table border colors???

liunx

Guest
How can I get colors on the table borders.<br />
<br />
Thanks<!--content--><table border="1" bordercolor="grey"><!--content-->You can also get nice effects using two colours:<br />
<br />
<table border="1" bordercolorlight="blue" bordercolordark="navy"><!--content-->For cross browser results you should probably use a style sheet instead,e.g.<br />
<html><br />
<head><br />
<style><br />
.borderYellow {border-color: yellow;}<br />
</style><br />
</head><br />
<body><br />
<br />
<table border=2 class="borderYellow"><br />
...<br />
</table><!--content-->
 
Back
Top