views:

33

answers:

2

alt text

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!

A: 

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

body {
  z-index: 0;
}

or

* {
  z-index: 0;
}
digitalFresh
+1  A: 

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

Russell Wong