Apr 21, 2011One of the most common CSS3 transition animations used by developers in the coming years will undoubtedly be making elements appear and disappear via the opacity property. What previously was only possible using JavaScript can now be easily described in significantly less bulky CSS code: div { opacity:0; transition:opacity 1s linear;* } div:hover { opacity:1; } * Note: Because the spec