Skip to content

Instantly share code, notes, and snippets.

@apelmahmudDev
Forked from jasonhejna/4k_website_tester.html
Created December 22, 2021 14:41
Show Gist options
  • Save apelmahmudDev/6d711c18f62921fe627f05a5385cc003 to your computer and use it in GitHub Desktop.
Save apelmahmudDev/6d711c18f62921fe627f05a5385cc003 to your computer and use it in GitHub Desktop.
Test a website in 4k resolution without a 4k monitor
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>4k website tester</title>
<style>
iframe:focus {
outline: none;
}
iframe{
position: absolute;
top:0px;
left:0px;
}
</style>
</head>
<body>
<!-- CHANGE THE SRC TO THE PAGE YOU WANT TO DISPLAY -->
<iframe src="http://localhost/index.html" width="4096px" height="2160px" frameborder="0"></iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment