Created
December 23, 2018 08:00
-
-
Save mihailsitnic/0dc944aa2ab0b761bccdeffc9a47471b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
margin: 0; | |
padding: 0; | |
} | |
body { | |
display: flex; | |
min-height: 100vh; | |
flex-direction: column; | |
justify-content: space-between; | |
} | |
.header { | |
height: 100px; | |
background: #eee; | |
} | |
.footer { | |
height: 100px; | |
background: #ccc; | |
} | |
.section { | |
display: flex; | |
} | |
.sidebar { | |
width: 25%; | |
background: red; | |
min-height: calc(100vh - 200px); | |
} | |
.body { | |
width: 75%; | |
background: yellow; | |
min-height: calc(100vh - 200px); | |
} | |
<!-- <header class="header"></header> | |
<section class="section"> | |
<aside class="sidebar">sidebar</aside> | |
<main class="body">body</main> | |
</section> | |
<footer class="footer"></footer> --> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment