Need some help, creating tables with 2 color boarders?

Basicaly here is the problem, I want to crease a table where the outside boarder is black and the inside boarder is grey, is this possible and how would i go about dooing this?<br />
<br />
Here is an exaple of what it should look like.<br />
<br />
Site (<!-- m --><a class="postlink" href="http://members.cox.net/daniellematoga/Generals%20Legion.htm">http://members.cox.net/daniellematoga/G ... Legion.htm</a><!-- m -->) <br />
<br />
The new section.<br />
<br />
Basicaly I am going to make a table with the graphite backround type thing and grey and black outline.<br />
<br />
Here is the problem the box type thing has to be ontop of it but it already has a boarder 1pt thats the same color as the backround.<br />
<br />
So basicaly it needs to be black on 3 sides (not the top) grey on 4 and then the top one needs to be black on 3 sides.<br />
<br />
This is so that it will synamicaly adjust its size. Which is kind of the main problem vs this version where it has a fixed size.<!--content-->You can maybe do that using CSS instead of trying to do it with straight HTML code.<br />
<br />
Or try an embedded table, something like this:<br />
<br />
<table border="0" cellspacing="0" cellpadding="1" bgcolor="#000000" width="200"><br />
<tr><br />
<td align="center"><br />
<table border="0" cellspacing="2" cellpadding="3" bgcolor="#FFFFFF" width="100%"><br />
<tr><br />
<td bgcolor="#AAAAAA"><br />
your content goes here<br />
</td><br />
</tr><br />
</table><br />
</td><br />
</tr><br />
</table><br />
<br />
the cellpadding for the first table creates the outer border and the cellspacing for the second table creates the inner border, but if you have multiple rows or cells in the second table it will make borders around those cells too.<!--content-->
 
Back
Top