18

I am trying to use css3 transition to enlarge a div width and height on :hover.

It works fine but I need to change the anchor point of the animation.

As for now it is set to the bottom left of the div and I need it to be from the top left corner.

Is that possible ?

Thanks

BoltClock
  • 700,868
  • 160
  • 1,392
  • 1,356
shannoga
  • 19,649
  • 20
  • 104
  • 169

1 Answers1

40

I think you might be looking for the transform-origin property. This allows you to say something like:

transform-origin:left top;

You can find more information about it here: http://www.w3schools.com/cssref/css3_pr_transform-origin.asp

Hope this helps!

Francisco Paulo
  • 6,284
  • 26
  • 25