How to shrink element top-down?

wpno4dwf

New Member
I would like to make a div to vanish animated by re-sizing it from its 100% to zero. However, if I just set the field height on the animation, the element start shrinking from the bottom part and I would like to it to start shrinking from the top. Any ideas of how to make ir happen?This piece of code show my animation today:\[code\]@-webkit-keyframes my-animation /* Safari and Chrome */{ 0% { opacity: 1; height:44px;//element size } 100% { opacity: 0; height: 0px; }}\[/code\]Thanks in advance.
 
Back
Top