Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <style>
  2. .container {
  3. background: blue;
  4. display: flex;
  5. flex: 1;
  6. height: 100vh;
  7. }
  8. .innerContainerA {
  9. background: red;
  10. height: 100vh;
  11. flex: 2;
  12. }
  13.  
  14. .innerContainerB {
  15. display:flex;
  16. height: 100vh;
  17. flex-direction: column;
  18. flex: 10;
  19. }
  20.  
  21. .innerInnerContainer {
  22. display: flex;
  23. background: green;
  24. flex:4;
  25. }
  26. .innerBoxTop {
  27. display: flex;
  28. background: orange;
  29. align-items: center;
  30. justify-content: center;
  31. }
  32. .innerCol1 {
  33. display: flex;
  34. background: green;
  35. flex:1;
  36. }
  37.  
  38. .innerCol2 {
  39. display: flex;
  40. background: purple;
  41. flex:3;
  42. }
  43.  
  44. </style>
  45. <div class='container'>
  46. <div class='innerContainerA'>Hallo!</div>
  47.  
  48. <div class='innerContainerB'>
  49. <div class='innerBoxTop'>
  50. Test Test
  51. Test
  52. Test
  53. Test
  54. Test
  55. Test
  56. Test
  57. Test
  58. Test
  59. Test
  60. <br>
  61. Test
  62. </div>
  63. <div class='innerInnerContainer'>
  64. <div class='innerCol1'>How do you fill all? </div>
  65. <div class='innerCol2'></div>
  66. </div>
  67. </div>
  68.  
  69.  
  70. </div>
  71.  
  72. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement