The CSS -ms-transform-origin Microsoft extension property provides an implementation of the CSS 2D Transforms Module. It is supported as of IE9PP6 [1]. It is a list of two points that define the origin of the transformations applied in the -ms-transform property. It's parameters are two values that define the point.
Example[]
To rotate an image from the top-left corner:
img#upsideDown
{
-ms-transform-origin: 0% 0%;
-ms-transform: rotate(180);
}
