https://jsfiddle.net/chovy/5vofg0cr/8/
<div class="navbar">
navbar
</div>
<section>
<header>header</header>
<div class="chat">
chat window
</div>
<footer>
<textarea>chat enter</textarea>
</footer>
</section>
css:
* {
box-sizing: border-box;
padding: 0;
margin: 0;
border: 1px solid gray;
}
.navbar {
height: 2rem;
}
section {
height: calc(100vh - 2rem);
}
.chat {
background-color: green;
height: 100%;
}
I'm trying to make the whole thing fit 100% of viewport without overflowing past the viewport size (ie: different window sizes)