40_用定控制元素大小.html 612 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box{
  9. width: 200px;
  10. height: 200px;
  11. border: 1px solid #000;
  12. position: relative;
  13. }
  14. .item{
  15. background-color: red;
  16. position: absolute;
  17. top:0;
  18. left:0;
  19. right: 0;
  20. bottom: 0;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div class="box">
  26. <div class="item"></div>
  27. </div>
  28. </body>
  29. </html>