12_浮动.html 592 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. div{
  9. width: 100px;
  10. height: 100px;
  11. float: right;
  12. }
  13. .box1{
  14. background-color: blue;
  15. }
  16. .box2{
  17. background-color: red;
  18. }
  19. .box3{
  20. background: yellow;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div class="box1"></div>
  26. <div class="box2"></div>
  27. <div class="box3"></div>
  28. </body>
  29. </html>