I added lots of keyframe animations with css3 to my site. Lets say I am animating a div from left to right. Initialy the position of this div is -50px and I am animating to 0px, but if browser do not support css3 the user will see div at -50px which is bad.
How can I do something like:
if css3 is supported { css1.css else { css2.css } }
thanks!