3_calc.html 641 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. padding: 0;
  11. }
  12. .div1{
  13. width: 300px;
  14. height: 500px;
  15. background-color: red;
  16. float: left;
  17. }
  18. .div2{
  19. width: calc(100% - 300px);
  20. height: 500px;
  21. background-color: blue;
  22. float: left;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div class="div1"></div>
  28. <div class="div2"></div>
  29. </body>
  30. </html>