Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. html, body {
  2. height: 100%;
  3. width: 100%;
  4. top: 0;
  5. bottom: 0;
  6. left: 0;
  7. right: 0;
  8. padding: 0;
  9. margin: 0;
  10. }
  11.  
  12. html{
  13. background-color: blue;
  14. height: 100%;
  15. }
  16.  
  17. body{
  18. display: -webkit-flex; /* Safari */
  19. display: flex;
  20. flex-direction: column;
  21. background-color: red;
  22. }
  23.  
  24. .flexWrapper{
  25. flex-basis: 100%;
  26. display: -webkit-flex; /* Safari */
  27. display: flex;
  28. flex-direction: row;
  29. background-color: purple;
  30. }
  31.  
  32. .flexHeader{
  33. flex-basis: 50px;
  34. flex-grow: 0;
  35. flex-shrink: 0;
  36. background-color: green;
  37. }
  38.  
  39. .flexSidebar{
  40. flex-basis: 250px;
  41. flex-grow: 0;
  42. flex-shrink: 0;
  43. background-color: mediumvioletred;
  44. }
  45.  
  46. .flexContent {
  47. display: -webkit-flex; /* Safari */
  48. display: flex;
  49. flex-direction: column;
  50. flex-basis: 100%;
  51. background-color: yellow;
  52. }
  53.  
  54. .flexPage{
  55. flex-basis: 100%;
  56. flex-grow: 1;
  57. flex-shrink: 1;
  58. background-color: tomato;
  59. }
  60.  
  61. .flexFooter {
  62. flex-basis: 50px;
  63. flex-grow: 0;
  64. flex-shrink: 0;
  65. background-color: turquoise;
  66. }
  67.  
  68. <!DOCTYPE html>
  69. <html>
  70. <head>
  71. <title>The FlexBox</title>
  72. <meta charset="UTF-8">
  73. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  74. <link href="assets/main/css/style.css" rel="stylesheet" type="text/css" />
  75. </head>
  76. <body>
  77. <div class="flexHeader">
  78. Flex Header
  79. </div>
  80. <div class="flexWrapper">
  81. <div class="flexSidebar">
  82. Flex Sidebar
  83. </div>
  84. <div class="flexContent">
  85. <div class="flexPage">
  86. flexPage<br />
  87. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  88. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  89. </div>
  90. <div class="flexFooter">
  91. Flex Footer
  92. </div>
  93. </div>
  94. </div>
  95. </body>
  96. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement