I have got a problem with a CSS3 animation.
.child { opacity: 0; display: none; -webkit-transition: opacity 0.5s ease-in-out; -moz-transit
I changed a bit but the result is beautiful.
.child { width: 0px; height: 0px; opacity: 0; } .parent:hover child { width: 150px; height: 300px; opacity: .9; }
Thank you to everyone.