height:100% istediğin etkiyi yapmaz. height: 100vh kullanman gerekiyor. İstediğin şöyle bir şey sanırım:

* {
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
body{
overflow: hidden;
}
.tasiyici {
width: 100%;
height:100vh;
margin: auto;
border: 1px solid #ccc;
}
.ustbolum {
height: 10%;
width: 100%;
border-bottom: 1px solid #ccc;
background: #fafaaf;
}
.solbolum {
height: 80%;
float: left;
width: 30%;
background: #c42b2b;
border-right: 1px solid #ccc;
}
.sagbolum {
white-space: nowrap;
height: 80%;
float: right;
width: 70%;
background: #f5f5f5;
}
.altbolum {
height: 10%;
border: 1px solid #ccc;
background: #fafafa;
}
.clear {
clear: both;
}