Guest User

Untitled

a guest
Oct 15th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. /**
  2. * Columns in HTML4+ and CSS2+
  3. */
  4.  
  5. body {
  6. font-family: "Helvetica Neue", "Trebuchet MS", sans-serif;
  7. font-weight: 300;
  8. }
  9.  
  10. #container {
  11. margin: 0 auto;
  12. width: 75%;
  13. }
  14.  
  15. .clearer {
  16. clear: both;
  17. }
  18.  
  19. .right-column {
  20. float: right;
  21. width: 48%;
  22. }
  23.  
  24. .left-column {
  25. float: left;
  26. width: 48%;
  27. }
  28.  
  29. .three-column {
  30. float: left;
  31. width: 33%;
  32. }
Add Comment
Please, Sign In to add comment