123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!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>
- .innerDiv{
- width: 100px;
- height: 100px;
- }
- .d1{
- background-color: rgb(235, 159, 159);
-
-
-
-
- position: fixed;
- right: 30px;
- top: 30px;
- }
- .d2{
- background-color: rgb(231, 146, 44);
- }
- .d3{
- background-color: rgb(180, 180, 235);
- }
- </style>
- </head>
- <body>
-
-
-
-
-
-
- <div class="innerDiv d1">框1</div>
- <div class="innerDiv d2">框2</div>
- <div class="innerDiv d3">框3</div>
- </body>
- </html>
|