html,
body {
height: 100%;
100%;
margin: 0 auto;
padding: 0;
text-align: center;
}
.container {
position: relative;
100%;
height: 100%;
background: #FFF0F5;
}
.header {
100%;
height: 100px;
line-height: 100px;
position: absolute;
background-color: #FFDAB9;
}
.footer {
100%;
height: 100px;
line-height: 100px;
position: absolute;
bottom: 0px;
background-color: #FFFACD;
}
.left {
top: 100px;
bottom: 100px;
background-color: #20B2AA;
100px;
position: absolute;
overflow: auto;
}
.middle {
top: 100px;
left: 100px;
bottom: 100px;
right: 200px;
background-color: #F0E68C;
position: absolute;
overflow: auto;
}
.right {
top: 100px;
right: 0px;
background-color: #708090;
overflow: auto;
position: absolute;
bottom: 100px;
200px;
}
for (var i = 1; i <= 500; i++) {
document.getElementById("left_content").innerHTML = document.getElementById("left_content").innerHTML + i.toString() + "
";
}
for (var i = 1; i <= 500; i++) {
document.getElementById("middle_content").innerHTML = document.getElementById("middle_content").innerHTML + (i * 10).toString() + "
";
}
for (var i = 1; i <= 500; i++) {
document.getElementById("right_content").innerHTML = document.getElementById("right_content").innerHTML + (i * 100).toString() + "
";
}