|
发表于 2018-10-20 14:10:19
|
显示全部楼层
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>Page Title</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <style type="text/css">
- body {
- color: #fff;
- background: #bfe;
- position: relative;
- }
-
- div {
- background: #0ff;
- position: absolute;
- }
-
- h1 {
- width: 120px;
- height: 120px;
- background: #0aa;
- padding: 20px;
- margin: 20px;
- border: 5px solid #000;
- box-sizing: border-box;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <h1>本人乃盒子大仙</h1>
- </div>
- </body>
- </html>
复制代码 |
|