Answers for "transform origin incss"

CSS
3

css transform origin

/* Syntax */
transform-origin: y-axis x-axis z-axis|initial|inherit;

/* Example */
transform-origin: center right;

/* Possible Values

 x-axis - left, center, right, (length), (%)
 y-axis - top, center, bottom, (length), (%)
 z-axis - (length)

*/
Posted by: Guest on March-06-2021
0

transform-origin

transform-origin: -100% 50%;
transform: rotate(45deg);
Posted by: Guest on June-04-2021

Browse Popular Code Answers by Language