10
0

20_calc.html 711 B

123456789101112131415161718192021222324252627282930
  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. *{
  9. margin: 0;
  10. }
  11. .box1{
  12. float: left;
  13. width: 300px;
  14. height: 100px;
  15. background-color:red;
  16. }
  17. .box2{
  18. float: left;
  19. height: 100px;
  20. /* calc 可以实现+、-、*、/ 数学运算,运算符两侧必须加空格 */
  21. width: calc(100% - 300px);
  22. background-color: blue;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div class="box1"></div>
  28. <div class="box2"></div>
  29. </body>
  30. </html>