Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working on the CSS3 3D features, but having some difficulties to set the elements order right. The code looks like this :

.item1 { z-index: 50; }

.item2 { z-index: 20; }

.container.open .item2 {
z-index: 100;
}

.container.open .item1 {
z-index: 10;
-webkit-transform: rotateY(-180deg), rotateZ(-180deg);
}

The .open classe is add to the container once the animation is lauched.

I want the .item1 element to move backward once the animation is fired. The new z-index is effectively set, but .item1 remains at the foreground.

Sorry that I have no demo to show, the css transforms arent recognized by jsfiddle.

share|improve this question
The transform isn't applied because you have to seprate using spaces, not commas. Apart from that it's working fine for me as is. Please supply a working "not working" example. – ndm Nov 5 '12 at 17:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.