css / zoom

넓이 1024에서 1550 사이의 디자인이 없어서 1500 사이즈를 1024로 줄여서 사용해야 했다.

I miss 1024px design for product, but I have 1550px. The best way to resovle for showing clients.

<style>
body {
    zoom: 80%
}
</style>

I want it to show only in between 1024px and 1550px.

<style>
    @media (1024px <= width <= 1550px ) {
        body {
           zoom: 80%
        }
    }
</style>