31_其他常用单位.html 903 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. body{
  9. margin: 0;
  10. }
  11. /* 方法一 使用百分比 */
  12. /* html,body{
  13. height: 100%;
  14. }
  15. .box1{
  16. width: 100%;
  17. height: 100%;
  18. background-color: red;
  19. } */
  20. /* 方法二 利用定位实现 */
  21. /* .box1{
  22. background-color: blue;
  23. position: fixed;
  24. top:0;
  25. left: 0;
  26. right: 0;
  27. bottom: 0;
  28. } */
  29. body{
  30. margin: 0;
  31. }
  32. .box1{
  33. background-color: yellow;
  34. height: 100vh;
  35. width: 100vw;
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <div class="box1"></div>
  41. </body>
  42. </html>