Guest User

Untitled

a guest
May 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <div class="two_cols_container">
  2. <div class="two_cols">
  3. <div class="left-col">
  4. test
  5. </div>
  6. <div class="right-col">
  7. test
  8. </div>
  9. </div>
  10. </div>
  11.  
  12. .two_cols_container {
  13. width: 100%;
  14. height: 100%;
  15. }
  16. .two_cols {
  17. position: relative;
  18. margin: 0 auto;
  19. border: 1px solid black;
  20. height: 100%;
  21. height: auto !important;
  22. min-height: 100%;
  23. }
  24. .two_cols .left-col {
  25. /*position: absolute;
  26. left: 0;*/
  27. float: left;
  28. }
  29. .two_cols .right-col {
  30. /*position: absolute;
  31. right: 0;*/
  32. float: right;
  33. }
Add Comment
Please, Sign In to add comment