float-open-details-contains-float-left-ref.html 539 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <!-- Any copyright is dedicated to the Public Domain.
  3. - http://creativecommons.org/publicdomain/zero/1.0/ -->
  4. <html>
  5. <style>
  6. body {
  7. width: 400px;
  8. }
  9. div#float {
  10. float: left;
  11. width: 200px;
  12. height: 400px;
  13. background-color: lightgreen;
  14. }
  15. div#details {
  16. float: left;
  17. background-color: orange;
  18. }
  19. div#summary {
  20. background-color: green;
  21. }
  22. </style>
  23. <body>
  24. <div id="details">
  25. <div id="summary">Summary</div>
  26. <div id="float"></div>
  27. </div>
  28. </body>
  29. </html>