3_相对单位.html 750 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. body{
  9. margin: 0;
  10. }
  11. .box{
  12. /* vw viewport width 是相对于视口的宽度 1vw = 1%视口宽度 */
  13. width: 100vw;
  14. /* vh viewport height 是相对于视口的高度 1vh = 1%视口高度 */
  15. height: 100vh;
  16. background-color: blue;
  17. }
  18. .box1{
  19. height: 100px;
  20. width: calc(100vw - 1000px);
  21. background-color: red;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <!-- <div class="box"></div> -->
  27. <div class="box1"></div>
  28. </body>
  29. </html>