2021年1月4日星期一

how can I set the web size in css?

I want to increase the overall size of the page. The current webpage looks too small for the screen size. please let me know how to make the homepage appear full on the screen like a normal website.enter image description here

this is my code.

<!DOCTYPE html>    <html>  <head>      <meta charset="utf-8" />      <title></title>        <style>                         html, body{              width: 1920px;              height: 2476px;              background: black;              opacity: 1;              margin: 0 auto;              border: 1pt solid white;                                      }          header{              width: 1920px;              height: 200px;              background: black;              opacity: 1;              margin: 0 auto;              border: 1pt solid white;          }          header h1{              color: aliceblue;              text-align: center          }          }      </style>    </head>  <body>      <header> <h1>HEADER</h1> </header>      </body>  </html>
https://stackoverflow.com/questions/65572363/how-can-i-set-the-web-size-in-css January 05, 2021 at 10:19AM

没有评论:

发表评论