Moin!
Besser Lösung:
Das mit der Tabelle in der Tabelle ist schon ganz gut, allerdings würde ich auf Stylesheets zurückgreifen,
damit die Browser es auch alle gleich gut verstehen und du kannst auch feiner 'dosieren'.
Beispiel:
HTML
<html>
<style type="text/css">
<!--
*.linie {
border-left-color:#007F00;
border-left-style:solid;
border-left-width:10px;
border-right-color:#007F00;
border-right-style:solid;
border-right-width:10px;
}
-->
</style>
<center>
<table class=linie bgcolor="#0060FF" border=0 cellspacing=0 cellpadding=0 height=400 width=200>
<tr>
<td>
<table border=3 style="border-style:groove" cellspacing=0 cellpadding=0 width=100% height=100%>
<tr>
<td align=center>huhu</td>
</tr>
</table>
</td>
</tr>
</table>
</center>
</html>
Alles anzeigen
Probiere es mal aus
Gruß aus der Marsch!
Ronald