views:

221

answers:

3

Why does margin-top value not work in IE?

Works fine in FF and Safari. Here's the link

Thanks

+5  A: 
John Topley
bloody haslayout, grumble grumble
annakata
Tell me about it!
godleuf
A: 

I see your #papertop is empty. Try adding some   inside to see if that does the trick.

Edit: forget it; this doesn't work.

Seb
Sorry, this doesn't work.
Seb
Should I try negative margins?
godleuf
If possible, avoid negative margins as much as you can; they are really nasty.
Seb
I'll keep that in mind, thanks.
godleuf
A: 

For a quick workaround this will achive the same thing.

#papertop {
background:transparent url(images/paper_top.png) no-repeat scroll right bottom;
height:250px;
position:relative;
z-index:300;
}
Shaun Humphries
That worked great for IE, thanks! But now FF is showing too much margin! This is a headache!
godleuf