Reputation: 1470
I'm trying to animate an image's width and height properties. Currently the image (as expected) animates to the right and down, however I'd like for the animation to occur to the left and upwards. Here's my current code :
I've read a few other posts on this subject which all refer to setting a marginLeft or left property but I can't seem to get the desired effect. I need the image to animate to the left and upwards while remaining in place. Let me know if this is possible...I can't seem to think of a way to do it right now..
Thanks in advance. Appreciate it.
Upvotes: 2
Views: 581
Reputation: 13141
That fiddle is not working for me.
Try settings #meet_team img { bottom:0; right:0; }
Or setting the width and height of the <li>
and setting text-align: right; vertical-align: baseline;
Upvotes: 1