10
0

17_百分比取值.html 710 B

123456789101112131415161718192021222324252627282930313233
  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. border:2px solid black;
  10. width: 400px;
  11. height: 100px;
  12. }
  13. .box1{
  14. height: 100px;
  15. background-color: red;
  16. width: 50%;
  17. float: left;
  18. }
  19. .box2{
  20. float: left;
  21. width: 50%;
  22. height: 100px;
  23. background-color: blue;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="box">
  29. <div class="box1"></div>
  30. <div class="box2"></div>
  31. </div>
  32. </body>
  33. </html>