float-clear-000-print.html 538 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
  2. <html class="reftest-print">
  3. <style type="text/css">
  4. html, body {
  5. margin: 0;
  6. padding: 0;
  7. height: 100%;
  8. }
  9. .float {
  10. float: right;
  11. width: 15px;
  12. background: aqua;
  13. height: 5in;
  14. }
  15. .L {
  16. float: left;
  17. }
  18. .container {
  19. width: 100%;
  20. background: red;
  21. }
  22. .clear {
  23. border-bottom: solid orange;
  24. }
  25. </style>
  26. <div class="container">
  27. <div class="float L"></div>
  28. <div class="float R"></div>
  29. </div>
  30. <div class="clear">
  31. <br clear="all">
  32. </div>