Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. .outer {
  2.  
  3. position: relative;
  4. background: red;
  5. height: 100%;
  6.  
  7. display: flex;
  8. flex-direction: column;
  9. align-items: stretch;
  10. overflow: hidden;
  11.  
  12. }
  13.  
  14. html, body {
  15. height: 100%;
  16. overflow: hidden;
  17. }
  18.  
  19. .header { background: green; }
  20.  
  21. .wrap {
  22.  
  23. background: beige;
  24. display: flex;
  25. align-items: stretch;
  26. flex: 1;
  27. }
  28.  
  29. .content {
  30.  
  31. display: flex;
  32. align-items: stretch;
  33.  
  34. }
  35.  
  36. .inner-content {
  37. display: flex;
  38. align-items: stretch;
  39. }
  40.  
  41. .col-right {
  42.  
  43. background: blue;
  44. overflow: auto;
  45.  
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement