#window1 {
margin-top: 90px;
background-position: top left;
width: 100%;
height: 200px;
padding: 0.5em;
position: fixed;
overflow: auto;
}
#window2 {
margin-top: 290px;
margin-left: 200px;
width: 100%;
height: 200px;
padding: 0.5em;
position: fixed;
overflow: auto;
}
#window3 {
margin-top: 490px;
margin-left: 200px;
background-position: top left;
width: 70%;
height: 200px;
padding: 0.5em;
position: fixed;
overflow: auto;
}
#window4 {
margin-top: 490px;
margin-left: 200px;
width: 30%;
height: 300px;
padding: 0.5em;
position: fixed;
overflow: auto;
}
main-page.jpg
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://getbootstrap.com/dist/css/bootstrap.css" rel="stylesheet" type="text/css" />
<script src="http://getbootstrap.com/dist/js/bootstrap.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<div class="row">
<div class="col-sm-12">Nav</div>
</div>
<div class="row">
<div class="col-sm-2">Left</div>
<div class="col-sm-10">
<div class="col-sm-12">Mid Top</div>
<div class="col-sm-12">Mid Mid</div>
<div class="col-sm-6">Mid Bottom Left</div>
<div class="col-sm-6">Mid Bottom Right</div>
</div>
</div>
</body>
</html>
<style>
#window1 {
position: fixed;
margin-left: 5px;
height: 200px;
overflow: auto;
}
#window2 {
position: fixed;
margin-top: 200px;
margin-left: 5px;
height: 170px;
overflow: auto;
}
#bottomHome {
position: fixed;
margin-top: 400px;
margin-left: 5px;
border: none;
overflow-y:hidden;
overflow-x:hidden
}
#window3 {
float: left;
width: 300px;
padding: 0.5em;
overflow: auto;
}
#window4 {
width: 100px;
padding: 0.5em;
overflow: auto;
}
</style>
<div id="window1">
</div>
</div>
<div id="window2">
</div>
</div>
<div id="bottomHome">
<div id="window3">
</div>
<div id="window4">
</div>
</div>
Open in new window
Open in new window