I have got a problem with a CSS3 animation.
.child { opacity: 0; display: none; -webkit-transition: opacity 0.5s ease-in-out; -moz-transit
On absolute or fixed elements you could also use z-index:
.item { position: absolute; z-index: -100; } .item:hover { z-index: 100; }
Other elements should have a z-index between -100 and 100 now.