Page margins in Firefox

  • Thread starter Thread starter karanovicm
  • Start date Start date
K

karanovicm

Hi
I have a problem with page margins in Firefox, it always show some
white margins arround what I don't like, in IE6 everything is fine.
This is part of code.
.............
</head>
<body bottommargin="0" leftmargin="0" rightmargin="0" topmargin="0">
<form id="form1" runat="server">
..................
Thanks
Marinko
 
I just got it
I didn't include "body" margins in CSS

body
{
margin-left:0;
margin-top:0;
background-color:White;
font-size: 8pt;
font-family: Tahoma, Verdana, 'Times New Roman';
......................


Marinko
 
Back
Top