float-should-avoid-inline-block.html 473 B

123456789101112131415161718
  1. <!DOCTYPE html><style type="text/css">
  2. * {
  3. border: 1px solid black;
  4. }
  5. .float-left {
  6. float: left;
  7. font-size: 100px;
  8. }
  9. .d-inline-block {
  10. display: inline-block;
  11. width: 100px;
  12. background-color: sandybrown;
  13. }
  14. .Layout-sidebar {
  15. width: 220px;
  16. background-color: beige;
  17. }
  18. </style><div class="Layout-sidebar"><div class="d-inline-block">floats!!!!!!</div><div class="float-left">float left</div></div>