Guest User

Untitled

a guest
Oct 1st, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <div class="row">
  2. <div class="col-xs-4">
  3. <div class="block">
  4. Content for block<br />
  5. Some more content<br />
  6. And a bit more<br />
  7. Last bit
  8. </div>
  9. </div>
  10. <div class="col-xs-8">
  11. <div class="block">
  12. Content for block<br />
  13. Only some more content
  14. </div>
  15. </div>
  16. </div>
  17.  
  18. .row {
  19. display: table;
  20. width: 100%; }
  21.  
  22. .row > div {
  23. float: none;
  24. display: table-cell;
  25. vertical-align: top; }
  26.  
  27. .block {
  28. height: 100%;
  29. background: red; }
Advertisement
Add Comment
Please, Sign In to add comment