Guest User

Untitled

a guest
Jul 15th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. .col1 {
  2. background: rgb(237, 228, 214);
  3. height: 500px;
  4. float: left; /* floating col1 only */
  5. width: 600px;
  6. padding: 20px;
  7. /* margin-left: 20px; see the floating co1 over col2 and footer */
  8. }
  9. .col2 {
  10. background: rgb(173, 169, 130);
  11. height: 500px;
  12. padding: 20px;
  13. margin-left: 660px; /* 640 width of col1, 20px left */
  14. }
  15. footer {
  16. background: rgb(100, 98, 102);
  17. line-height: 3em;
  18. font-size: .6em;
  19. color: white;
  20. padding: 0 2em;
  21. clear: both;
  22. }
  23.  
  24.  
  25. --- html ---
  26. <body>
  27. <header>
  28. <h1>Cool company header</h1>
  29. </header>
  30. <section class="col1">
  31. This is where the really important stuff goes.
  32. </section>
  33. <aside class="col2">
  34. This is where the related content goes.
  35. </aside>
  36. <footer>Copyright stuff....</footer>
Add Comment
Please, Sign In to add comment