1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!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>
- .box1,.box2{
- width: 400px;
- height: 400px;
- border:3px solid black;
- float: left;
- }
- .box1{
- text-align: center;
- line-height: 400px;
- }
- .box3{
- width: 100px;
- height: 100px;
- background-color: red;
- }
- .box4{
- margin-top: 150px;
- margin-left: 150px;
- }
- .box6{
- position: relative;
- }
- .box5{
- position: absolute;
- left: 50%;
- top: 50%;
- margin-top: -50px;
- margin-left: -50px;
- }
- </style>
- </head>
- <body>
- <div class="box1">
- <span>hello</span>
- </div>
- <div class="box2">
- <div class="box3 box4"></div>
- </div>
- <div class="box2 box6">
- <div class="box3 box5"></div>
- </div>
- </body>
- </html>
|