03-15-float-disappearing.html 410 B

12345678910111213141516171819202122232425262728293031
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Float experiment</title>
  6. <style>
  7. .box {
  8. width: 400px;
  9. height: 400px;
  10. background-color: #000;
  11. opacity: 0.3;
  12. }
  13. .box:first-child {
  14. float: left;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div class="box">
  20. </div>
  21. <div class="box">
  22. </div>
  23. <div class="box">
  24. </div>
  25. </body>
  26. </html>