On 7/28/06, Michael Boudreau <[EMAIL PROTECTED]> wrote
http://mss.uchicago.edu/MRB/citation_example.html:

> I've got a layout with an absolutely positioned <span> inside a
> relatively positioned <p> that works perfectly in every browser
> except IE (6 and 7b2). The usual approach to this problem--making
> sure the relatively positioned element has layout--doesn't seem to work.
>
> Here's a sample:
>
> div.example p.cite_N {
>    margin-left: 3em;
>    position: relative;
>    text-indent: 1em;
> }
> .cite_N .label {
>    position: absolute; left: -3em;
> }

Hi, Michael,

It looks like IE is having issues with trying to juggle the
text-indent along with the positioning and the margin. I found that
replacing the margin-left: 3em with padding-left: 3em, setting the
label's left position to zero, and then giving the paragraph layout,
seemed to do the trick.

HTH,

Michael
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to