eozzy
eozzy

Reputation: 68670

IE z-index Issue

alt text http://img706.imageshack.us/img706/3876/screenshot20100621at110.png

Looking good here in the result, but I can't achieve the same in IE. Is there any workaround for this?

JsFiddle for this: http://jsfiddle.net/3f3Xa/

Many thanks for your help!

Upvotes: 0

Views: 262

Answers (2)

Russell Wong
Russell Wong

Reputation: 101

I think you are using IE 6 ? It is a bug of IE 6 or 7, so far the code work well in IE 7.

Maybe you should find more information in this page

Upvotes: 1

tcooc
tcooc

Reputation: 21209

You should set a z-index for every element in IE.

body {
  z-index: 0;
}

or

* {
  z-index: 0;
}

Upvotes: 0

Related Questions