HTML / Firefox problem (quickie)

lo all

my problem is pretty simple, firefox doesn’t seem to like topmargin and leftmargin attributes in that it ignores them

<body bgcolor="#ffffff" topmargin=“0” leftmargin=“0” background=“PageBG.gif”>

renders as it should in IE but the margins are still present in Firefox

anyone got a work around?

cheers :love:

thread moved

Have you tried validating your code?

all the *margin body attributes are proprietrary and not in the standards.

The correct way to do it is this:


<body style="margin:0;">

works great! thanks! =)