So, first of all, I want to say, that I know that similar questions existing, but no of these helped me out though.
I just want to create a frame, within a headline with 50px and another frame in this "container" with height 100%.
But this is not working.
I already tried to create multiple container as divs etc. http://prntscr.com/ohshyn this is the current result.
... and this is the current code I used.
body {
  background-color: black;
}
.container {
  width: 500px;
  height: 500px;
  background-color: red;
  padding: 10px;
}
.top {
  width: 100%;
  height: 50px;
  background-color: green;
}
.bottom {
  width: 100%;
  height: 100%;
  background-color: blue;
}<div class="container">
  <div class="top"></div>
  <div class="bottom"></div>
</div>I want to look like this: http://prntscr.com/ohsip9
 
     
     
    