1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- body{
- margin: 0;
- }
- /* 方法一 使用百分比 */
- /* html,body{
- height: 100%;
- }
- .box1{
- width: 100%;
- height: 100%;
- background-color: red;
- } */
- /* 方法二 利用定位实现 */
- /* .box1{
- background-color: blue;
- position: fixed;
- top:0;
- left: 0;
- right: 0;
- bottom: 0;
- } */
- body{
- margin: 0;
- }
- .box1{
- background-color: yellow;
- height: 100vh;
- width: 100vw;
- }
- </style>
- </head>
- <body>
- <div class="box1"></div>
- </body>
- </html>
|