Search code examples
htmlcssscale

How to scale from left to right only


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 from left how can i do this


Solution

  • I believe the transform-origin can be helpful here:

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