| 123456789101112131415161718192021222324252627282930313233 |
- <!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>
- *{
- margin: 0;
- }
- /* 块元素默认宽度为父元素宽度 */
- /* 块元素宽度百分比的值是相较于父元素的宽度 */
- /* 宽元素默认高度为内容高度 */
- .box{
- background-color: orange;
- /* width: 100%;
- height: 100%; */
- /* 绝对定位如果所有父元素都没有定位,那么就以body为参考点 */
- /* position: absolute; */
- position: fixed;
- top:0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- </style>
- </head>
- <body>
-
- <div class="box"></div>
- </body>
- </html>
|