<HTML>
<HEAD>
 <TITLE>Table Borders 1</TITLE>
 <style>
 <!--
.border1 {border-width:2px;
	 border-style:solid;
	 border-color: #008080}
 //-->
</style>
</HEAD>

<BODY>
Table with colored border.
<br>Cell does not inherit border settings.
<table class=border1>
<tr><td>Cell 1</td></tr>
<tr><td>Cell 2</td></tr></table>
</BODY>
</HTML>