| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!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>
- .box{
- width: 200px;
- height: 200px;
- background-color: blue;
- padding:1px;
- }
- .box1{
- width: 200px;
- height: 200px;
- background-color: red;
- }
- .box2{
- position: relative;
- }
- .box3{
- width: 200px;
- height: 200px;
- background-color: blue;
- position: absolute;
- top: 0;
- left: 0;
- padding: 1px;
- }
- .box4{
- width: 200px;
- height: 200px;
- background-color: green;
- position: absolute;
- top: 1px;
- left: 1px;
- }
- </style>
- </head>
- <body>
- <!-- <div class="box">
- <div class="box1"></div>
- </div> -->
- <div class="box2">
- <div class="box3"></div>
- <div class="box4"></div>
- </div>
- </body>
- </html>
|