• Resolved rafalwenio

    (@rafalwenio)


    Hi
    I would like to reduce the size of my page by 10%. I use the command:
    body {
    transform: scale(0.9);
    transform-origin: center;
    }
    But then there is empty space at the top and bottom of the page.
    So what command should I use?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @rafalwenio

    You could use this instead:

    html {
        zoom: 90%; /* 90% of the original size */
    }

    You can adjust the percentage as needed to achieve the desired level of scaling. For example, if you want to reduce the size, you can use zoom: 85%;.

    Let us know if that achieves your goal.

Viewing 1 replies (of 1 total)
  • The topic ‘Changing page size’ is closed to new replies.