How to scale from left to right only

后端 未结 2 1645
栀梦
栀梦 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:14

    I believe the transform-origin can be helpful here:

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

提交回复
热议问题