HTML page not extending 100% to the right and towards the bo

HTML, CSS and anything else that deals with client side capabilities.

Moderator: General Moderators

Post Reply
User avatar
edawson003
Forum Contributor
Posts: 133
Joined: Thu Aug 20, 2009 6:34 am
Location: Los Angeles, CA - USA

HTML page not extending 100% to the right and towards the bo

Post by edawson003 »

HTML page not extending 100% to the right and towards the bottom. leaves about a 10 to 15 pixel gap from the right and bottom. If I hit refresh from the page the gap disappears. Any thoughts on how to fix that? I use to know many years ago, I just back on my web design hat and I am a little rusty. Thoughts?

my header and footer table are setup like this...plus more detail ofcourse.

Code: Select all

<table width="100%" height="100%"
border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="45%">&nbsp;</td>
    <td>&nbsp;</td>
    <td width="45%">&nbsp;</td>
  </tr>
</table>
Attachments
corner.gif
corner.gif (4.3 KiB) Viewed 1201 times
User avatar
John Cartwright
Site Admin
Posts: 11470
Joined: Tue Dec 23, 2003 2:10 am
Location: Toronto
Contact:

Re: HTML page not extending 100% to the right and towards the bo

Post by John Cartwright »

Have you tried adding

Code: Select all

body {
   margin: 0;
   padding: 0;
}
.. to your stylesheet?
User avatar
edawson003
Forum Contributor
Posts: 133
Joined: Thu Aug 20, 2009 6:34 am
Location: Los Angeles, CA - USA

Re: HTML page not extending 100% to the right and towards the bo

Post by edawson003 »

just tried it. Didn't work. :(
Post Reply