You are here: irt.org | About | Feedback | 464 [ previous next ]
Feedback on:
irt.org FAQ Knowledge Base Q2050
Sent by
Adam Eslinger on September 16, 1999 at 00:40:34:
Worth:
Worth reading
Length:
Just right
Technical:
Just right
Comments:
Another way without using an image is to insert a table with colored cells within a table with a colored background. Then you adjust the border thickness by adjusting the cellspacing attribute of the inner table. Works in both IE and NS.
Example:
<table border="0" width="100%" bgcolor="#000000" cellspacing="0" cellpadding="0">
<tr>
<td width="100%"><table border="0" width="100%" cellpadding="2">
<tr>
<td bgcolor="#FFFFFF">Some content</td>
<td bgcolor="#FFFFFF">Some more content</td>
</tr>
</table>
</td>
</tr>
</table>