I am try to get the table at the top of the page to stretch across the
entire screen andf not leave those annoying bits at each edge...
http://www.jedsite.info/content/test.html
The CSS i have for it is as follows...
TABLE.vanilla{
width: 100%;
margin-top: 0px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
border-collapse : collapse;
border : 2px solid black;
}
Anyone advise me on am I doing wrong?

Signature
TTFN
Jim
Always remember to pillage BEFORE you burn
-- Unknown
Harlan Messinger - 28 Jul 2008 17:09 GMT
> I am try to get the table at the top of the page to stretch across the
> entire screen andf not leave those annoying bits at each edge...
[quoted text clipped - 14 lines]
>
> Anyone advise me on am I doing wrong?
body { margin: 0; }
Barely Audible - 28 Jul 2008 17:18 GMT
>> I am try to get the table at the top of the page to stretch across the
>> entire screen andf not leave those annoying bits at each edge...
[quoted text clipped - 16 lines]
>
> body { margin: 0; }
Thanks Harlan!