07-08-float-columns-grid-and-content.html 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Float grid with dummy content</title>
  6. <!-- the base styles and "housekeeping" styles are in here: -->
  7. <link rel="stylesheet" href="css/grid-base.css">
  8. <!-- the HTML5 shiv, to help older browsers understand styling
  9. on newer HTML5 elements: -->
  10. <script src="js/html5shiv.min.js"></script>
  11. <style>
  12. /* grid styling */
  13. .row {
  14. margin: 0 -.9%;
  15. padding: 0;
  16. list-style: none;
  17. }
  18. .row:after {
  19. content: '';
  20. display: block;
  21. clear: both;
  22. }
  23. .col {
  24. float: left;
  25. -moz-box-sizing: border-box;
  26. box-sizing: border-box;
  27. }
  28. .col:last-child {
  29. float: right;
  30. }
  31. .row-quartet > * {
  32. width: 25%;
  33. }
  34. .row-trio > * {
  35. width: 33.33333%;
  36. }
  37. /* content styling */
  38. .subcategory {
  39. margin-top: 1.5em;
  40. border-bottom: 1px solid #8e3339;
  41. }
  42. .subcategory-featured {
  43. width: 50%;
  44. }
  45. .subcategory-content {
  46. width: 80%;
  47. }
  48. .subcategory-header {
  49. width: 20%;
  50. }
  51. .story {
  52. padding: .6875em;
  53. background-color: #eee;
  54. }
  55. .story + .story {
  56. margin-top: 1.375em;
  57. }
  58. .story img {
  59. width: 100%;
  60. }
  61. </style>
  62. </head>
  63. <body>
  64. <header class="masthead">
  65. <div class="wrapper">
  66. <h1>Important News</h1>
  67. </div>
  68. </header>
  69. <nav role="navigation" class="navbar">
  70. <div class="wrapper">
  71. <ul class="navlist">
  72. <li><a href="#">Home</a></li>
  73. <li><a href="#">World</a></li>
  74. <li><a href="#">Local</a></li>
  75. <li><a href="#">Sports</a></li>
  76. </ul>
  77. </div>
  78. </nav>
  79. <main class="wrapper">
  80. <section class="subcategory">
  81. <div class="row">
  82. <header class="col subcategory-header">
  83. <h2>Lorem ipsum</h2>
  84. </header>
  85. <div class="col subcategory-content">
  86. <div class="row row-quartet">
  87. <div class="col subcategory-featured">
  88. <article class="story">
  89. <img src="http://placehold.it/600x300" alt="Dummy image">
  90. <h3><a href="#">Cras suscipit nec leo id.</a></h3>
  91. <p>Autem repudiandae aliquid tempora quos reprehenderit architecto, sequi repellat.</p>
  92. </article>
  93. </div>
  94. <div class="col">
  95. <article class="story">
  96. <img src="http://placehold.it/600x300" alt="Dummy image">
  97. <h3><a href="#">Perferendis, ipsam!</a></h3>
  98. <p>Neque magnam vero obcaecati facere nobis sint dolore accusamus vitae consequuntur ad necessitatibus, laborum molestiae.</p>
  99. </article>
  100. </div>
  101. <div class="col">
  102. <article class="story">
  103. <img src="http://placehold.it/600x300" alt="Dummy image">
  104. <h3><a href="#">Curabitur mattis purus nec velit.</a></h3>
  105. <p>Neque magnam vero obcaecati facere nobis sint dolore accusamus vitae consequuntur ad necessitatibus, laborum molestiae.</p>
  106. </article>
  107. </div>
  108. </div>
  109. <div class="row row-quartet">
  110. <div class="col">
  111. <article class="story">
  112. <h3><a href="#">Perferendis, ipsam!</a></h3>
  113. <p>Neque magnam vero obcaecati facere nobis sint dolore accusamus vitae consequuntur ad necessitatibus, laborum molestiae.</p>
  114. </article>
  115. </div>
  116. <div class="col">
  117. <article class="story">
  118. <h3><a href="#">Aliquam mattis eros id posuere.</a></h3>
  119. <p>Neque magnam vero obcaecati facere nobis sint dolore accusamus vitae consequuntur ad necessitatibus, laborum molestiae.</p>
  120. </article>
  121. </div>
  122. <div class="col">
  123. <article class="story">
  124. <h3><a href="#">Proin leo felis, semper nec</a></h3>
  125. <p>Neque magnam vero obcaecati facere nobis sint dolore accusamus vitae consequuntur ad necessitatibus, laborum molestiae.</p>
  126. </article>
  127. </div>
  128. <div class="col">
  129. <article class="story">
  130. <h3><a href="#">Aliquam vitae risus tortor. Sed!</a></h3>
  131. <p>Neque magnam vero obcaecati facere nobis sint dolore accusamus vitae consequuntur ad necessitatibus, laborum molestiae.</p>
  132. </article>
  133. </div>
  134. </div>
  135. </div>
  136. </div>
  137. </section>
  138. <section class="subcategory">
  139. <div class="row">
  140. <header class="col subcategory-header">
  141. <h2>Dolor sit amet</h2>
  142. </header>
  143. <div class="col subcategory-content">
  144. <div class="row row-trio">
  145. <div class="col">
  146. <article class="story">
  147. <img src="http://placehold.it/600x300" alt="Dummy image">
  148. <h3><a href="#">Ut sit amet mi massa</a></h3>
  149. <p>Neque magnam vero obcaecati facere nobis sint dolore accusamus vitae consequuntur ad necessitatibus, laborum molestiae.</p>
  150. </article>
  151. </div>
  152. <div class="col">
  153. <article class="story">
  154. <h3><a href="#">Nunc mollis sit amet nunc</a></h3>
  155. <p>Neque magnam vero obcaecati facere nobis sint dolore accusamus vitae consequuntur ad necessitatibus, laborum molestiae.</p>
  156. </article>
  157. <article class="story">
  158. <h3><a href="#">Duis sed ante enim. Cras</a></h3>
  159. <p>Neque magnam vero obcaecati facere nobis sint dolore accusamus vitae consequuntur ad necessitatibus, laborum molestiae.</p>
  160. </article>
  161. </div>
  162. <div class="col">
  163. <article class="story">
  164. <img src="http://placehold.it/600x300" alt="Dummy image">
  165. <h3><a href="#">Animi, explicabo, ipsum</a></h3>
  166. <p>Neque magnam vero obcaecati facere nobis sint dolore accusamus vitae consequuntur ad necessitatibus, laborum molestiae.</p>
  167. </article>
  168. </div>
  169. </div>
  170. </div>
  171. </div>
  172. </section>
  173. </main>
  174. </body>
  175. </html>