Connecting Tech Pros Worldwide Help | Site Map

Difference in opinion with computer over what constitutes 100%

  #1  
Old July 28th, 2008, 04:45 PM
Barely Audible
Guest
 
Posts: n/a
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?

--
TTFN
Jim

Always remember to pillage BEFORE you burn
-- Unknown
  #2  
Old July 28th, 2008, 05:15 PM
Harlan Messinger
Guest
 
Posts: n/a

re: Difference in opinion with computer over what constitutes 100%


Barely Audible wrote:
Quote:
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?
>
body { margin: 0; }
  #3  
Old July 28th, 2008, 05:25 PM
Barely Audible
Guest
 
Posts: n/a

re: Difference in opinion with computer over what constitutes 100%


Harlan Messinger wrote:
Quote:
Barely Audible wrote:
Quote:
>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?
>>
>
body { margin: 0; }
Thanks Harlan!
Closed Thread