Advertisement
Guest User

Untitled

a guest
Aug 20th, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
  2.  
  3. .row { width: 1000px; max-width: 100%; min-width: 768px; margin: 0 auto; }
  4. .row .row { width: auto; max-width: none; min-width: 0; margin: 0 -15px; }
  5.  
  6. .column, .columns { float: left; min-height: 1px; padding: 0 15px; position: relative; }
  7. [class*="column"] + [class*="column"]:last-child { float: right; }
  8. [class*="column"] + [class*="column"].end { float: left; }
  9.  
  10. .row .one { width: 8.33% }
  11. .row .two { width: 16.66% }
  12. .row .three { width: 25% }
  13. .row .four { width: 33.33% }
  14. .row .five { width: 41.66% }
  15. .row .six { width: 50% }
  16. .row .seven { width: 58.33% }
  17. .row .eight { width: 66.66% }
  18. .row .nine { width: 75% }
  19. .row .ten { width: 83.33% }
  20. .row .eleven { width: 91.66% }
  21. .row .twelve { width: 100% }
  22.  
  23.  
  24. .row:before, .row:after, .clearfix:before, .clearfix:after { content:""; display:table; }
  25. .row:after, .clearfix:after { clear: both; }
  26. .row, .clearfix { zoom: 1; }
  27.  
  28. <div class="row">
  29. <div class="three columns">
  30. ...
  31. </div>
  32. <div class="nine columns">
  33. ...
  34. </div>
  35. </div>
  36. <div class="row">
  37. <div class="six columns">
  38. ...
  39. </div>
  40. <div class="six columns">
  41. this is the div i need to split up into 2 divs on top of eachother
  42. </div>
  43. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement