Page Margins (IE vs. Netscape)

liunx

Guest
I'm in the process of designing a page that has graphics in tables that fit against the left and top sides of the browser.<br />
<br />
leftmargin="0" topmargin="0"<br />
<br />
That code only seems to work in IE, and not Netscape. Is there a better way?<br />
<br />
Thanks!<!--content-->You can use CSS, although I'm not sure of the compatibilty between IE and Netscape for the BODY attributes.<br />
<br />
As far as the BODY tag goes you can get them close using<br />
<br />
<BODY TOPMARGIN=0 LEFTMARGIN=0 RIGHTMARGIN=0 BOTTOMMARGIN=0 marginheight=0 marginwidth=0><br />
<br />
The 4 uppercase attributes are IE and the 2 lowercase attributes are Netscape.<br />
<br />
Regards,<br />
Kevin<!--content-->Thanks a ton, I'll give it a try!<!--content-->To see the compatibility b/w browser go to:<br />
<br />
<!-- m --><a class="postlink" href="http://www.netmechanic.com">http://www.netmechanic.com</a><!-- m --><br />
<br />
You have 2 options:<br />
<br />
1. Test a site with the FREE site testing service. When the results show, click the "Browser Compatibility" link at the top of the page.<br />
2. By their software which allows you to show compatibility b/w browsers.<!--content-->
 
Back
Top