I have a div with margin-top:-200px. I want the div to move up/behind the div above it.
margin-top:-200px
Works great in all browsers except IE so far. margin-top:
margin-top:
IE doesn't like negative margins and doesn't render them properly. Position your elements relatively or absolutely and use top: -200px instead.
top: -200px
Note: positioning them may change the layout significantly and you may have to rework your styles.