Any way to tell css where object center is when using transform:scale?
The following code will enlarge an object by a scale of 2 on mouseover.
a:hover {
transform: scale(2);
}
By default, it expands from the middle outward.
Is there a way to tell this thing to scale in a specific direction (in other words, so that at least one of the sides remains fixed) while maintaining its proportions?
