Last active
November 12, 2019 05:43
-
-
Save Flcwl/69a952664d62723d6d815d153440de7d 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
<div id="root"> | |
<div class="container"> | |
<Header class="header">Header</Header> | |
<div class="auto-fill"> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
auto fill <br /> | |
</div> | |
</div> | |
</div> | |
html, body, #root, main { | |
height: 100%; | |
} | |
body { | |
margin: 0; | |
overflow: auto; | |
background-color: white; | |
} | |
.container { | |
width: 100%; | |
height: 100%; | |
display: flex; | |
flex-direction: column; | |
} | |
header { | |
height: 3.1875rem; | |
flex: 0 0 3.1875rem; | |
background-color: pink; | |
} | |
.auto-fill { | |
padding: 0 0.75rem 3rem; | |
box-sizing: border-box; | |
background-color: skyblue; | |
width: 100%; | |
flex: 1 1 auto; | |
overflow: auto; | |
min-height: fit-content; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Demo