How to scale from left to right only

后端 未结 2 1612
栀梦
栀梦 2021-01-12 19:45

This is my css code

 body
 {
  transform: scaleX(0.67);
 }

In this my entire website shrink both from right and left.but i need only scale

2条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-12 20:26

    You add transform-origin which define from which position the transform should occur.

    Its default value is center center (50% 50%) and you need left center (0 50%)

    body
    {
      transform: scaleX(0.67);
      transform-origin: left center;
    }
    

提交回复
热议问题