Вы можете достичь этого, используя div (s)
<div class="upperSection">
</div>
<div class="content">
</div>
<div class="lowerSection">
</div>
и Css:
.upperSection
{
position:absolute;
top:0;
left:0;
height:300px;
width:100%;
}
.content
{
position:absolute;
top:300px;
left:0;
height:100%;
width:100%;
}
.lowerSection
{
position:absolute;
bottom:0;
left:0;
height:100px;
width:100%;
}