Notes to self

Easy solutions to tricky problems
May 18
Permalink

IE6 CSS negative margin

Negative margins don’t work in IE6 on floated elements.

If possible, use another hasLayout trigger:

    .element {
        float: none:
        zoom: 1;
    }