Sent by Chris Kaminski on 20 May 2002 06:06
> Sadly, it's worse than you think :-(.
> If you position a <p>, an <h3>.... etc with {position: relative},
> then IE5 Mac displays that irregular line-spacing bug.
> Codebitch has already updated the IE bug page [2] on that. If you
> need to use relative positioning on a <p>, hmm better hide it
> from IE5Mac (the @media all hack seems to work fine).
If I'm understanding the problem correctly, another alternative if
position: relative is needed for IE/Win and is fouling up Moz & IE/Mac
is to set position: back to static using:
h1, p {
position: relative;
}
html>body h1, html>body p {
position: static;
}
ck