03-20-media-object-with-clearing.html 706 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Media Object, clearing with empty element and clear class</title>
  6. <style type="text/css" media="screen">
  7. .media-block {
  8. background-color: gray;
  9. border: solid 1px black;
  10. }
  11. .media-fig {
  12. float: left;
  13. width: 30%;
  14. }
  15. .media-body {
  16. float: right;
  17. width: 65%;
  18. }
  19. .clear {
  20. clear: both;
  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 class="clear"></div>
  32. </div>
  33. </body>
  34. </html>