| 12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport"
- content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, viewport-fit=cover" />
- <title>Document</title>
- <style>
- html {
- background: lightcoral;
- }
- html,
- body {
- height: 100vh;
- min-height: 100vh;
- }
- html {
- position: relative;
- }
- body {
- margin: 0;
- padding: 0;
- overflow-x: hidden;
- }
- </style>
- </head>
- <body>
- </body>
- </html>
|