03-20-media-object-no-clearing.html 708 B

12345678910111213141516171819202122232425262728293031323334
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Media Object, no clearing</title>
  6. <style type="text/css" media="screen">
  7. /**
  8. * 1. Notice how this will not show, as the block collapses in height.
  9. */
  10. .media-block {
  11. background-color: gray; /* 1 */
  12. border: solid 1px black;
  13. }
  14. .media-fig {
  15. float: left;
  16. width: 30%;
  17. }
  18. .media-body {
  19. float: right;
  20. width: 65%;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div class="media-block">
  26. <img class="media-fig" src="img/pic.png" alt="The pic" />
  27. <div class="media-body">
  28. <h3>Title of this</h3>
  29. <p>Brief description of this</p>
  30. </div>
  31. </div>
  32. </body>
  33. </html>