CSS: display page on 4k screen the same as on FHD

Viewed 1145

is there any trick that a website gets rendered the same way like on a FHD screens so that it simulates that it has 1080px?

I tried it with the viewport meta tag but it did not work out.

<meta name="viewport" content="width=1080, initial-scale=1">
1 Answers

Just detect the screen if it's 4k, e.g. >= 3000px then set the zoom property to 200%

@media only screen and (min-width: 3000px) {
  html {
    zoom: 200%
  }
}
Related