34_calc.html 720 B

12345678910111213141516171819202122232425262728
  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: 500px;
  10. height: 300px;
  11. border: 3px solid black;
  12. }
  13. .box1{
  14. height: 200px;
  15. background-color: red;
  16. /* calc 可以实现基础数学运算 */
  17. /* 100% 是 box 的宽度,减去 200px 就是 box1 的宽度 */
  18. /* calc 运算符号左右都需要空格 */
  19. width: calc(100% - 200px);
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div class="box">
  25. <div class="box1"></div>
  26. </div>
  27. </body>
  28. </html>