css / zoom
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>