vote up 0 vote down star
1

I have an element positioned outisde its parent via negative margins, like this:

<style>
.parent {
    height: 1%;
}

.element {
    float: left;
    margin-left: -4px;
}
</style>

...

<div class="parent">
    <div class="element">Element</div>
</div>

In Internet Explorer 6, the part of .element positioned outside of its parent element is clipped, i.e. invisible, hidden, cut off. How do I fix this?

flag

78% accept rate

3 Answers

vote up 2 vote down check

Assign position: relative; to .element, like this:

<style>
.parent {
    height: 1%;
}

.element {
    float: left;
    margin-left: -4px;
    position: relative; /* Fixes clipping issue in IE 6 */
}
</style>

...

<div class="parent">
    <div class="element">Element</div>
</div>

This is only necessary if the parent element hasLayout (which is too big a can of worms to get into here).

link|flag
1  
Awesome i've been struggling with this issue for days!!! finally got a fix that works :) – Alex Aug 12 at 2:21
vote up 0 vote down

.parent { height: 1%; overflow: auto; zoom: 1; /ie6 hack forces has layout*/ }

.element { float: left; margin-left: -4px; }

link|flag
That doesn’t seem to fix the issue. I think height: 1% should force hasLayout on .parent anyway; you shouldn’t need zoom: 1 as well. – Paul D. Waite Apr 23 at 21:05
vote up 0 vote down

This happens with negative margins combined with floats in IE6.

If you can, get rid of the float:

.element {
   float: none:
   zoom: 1;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.