123456789101112131415161718192021222324252627282930313233343536 |
- <!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">
- <title>Document</title>
- <style>
- *{
- margin: 0;
- padding: 0;
- }
- #div1{
- background: red;
- /* width: 50%;
- height: 100px; */
- /* width: 50vw;
- height: 50vh; */
- width: 100%;
- /* height: 50px; */
- /* padding-top: 50%; */
- /* padding-top 百分比 相对于父元素的宽度 */
- padding-top: 10px;
- /*
- padding-top: 10px; 容器内的内容距离容器顶部有10px 包含在容器内
- */
-
- }
- </style>
- </head>
- <body>
- <div id="div1"></div>
- </body>
- </html>
|