Använd klasser, här tabell1 och tabell2.
Bredd o höjd för table är global om inget anna anges i tabell-klassen.
<html>
<head>
<style type="text/css">
<!--
table {width:300px; height:150px;}
.tabell1
{
border-left:1px solid blue;
border-top 1px: dotted red;
border-right:1px double white;
border-bottom:1px dotted blue;
}
.tabell2
{
border-left:1px solid black;
border-top:1px solid red;
border-right:1px double black;
border-bottom:1px double red;
}
-->
</style>
</HEAD>
<BODY BGCOLOR="green">
<CENTER>
<table class=tabell1>
<TR>
<TD>
</TD>
</TR>
</TABLE>
<BR><BR>
<table class=tabell2>
<TR>
<TD>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>