Tuesday, July 28, 2009

How to remove the white gap in HTML pages?

I'm building a table in html and I want it to sit right against the upper left hand corner of the webpage - only I get a little gap on the left and top. How do I make the gap go away?

How to remove the white gap in HTML pages?
Fix your %26lt;BODY%26gt; tag to %26lt;BODY margintop="0" marginleft="0"%26gt;.
Reply:I can't do more without your html/css code :





Try this in CSS :





* {


margin:0;


padding:0;


border:0;


}





And in html :





%26lt;table cellspacing="0" cellpadding="0"%26gt;


No comments:

Post a Comment