test.html 675 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport"
  7. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, viewport-fit=cover" />
  8. <title>Document</title>
  9. <style>
  10. html {
  11. background: lightcoral;
  12. }
  13. html,
  14. body {
  15. height: 100vh;
  16. min-height: 100vh;
  17. }
  18. html {
  19. position: relative;
  20. }
  21. body {
  22. margin: 0;
  23. padding: 0;
  24. overflow-x: hidden;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. </body>
  30. </html>