<div id="main">
<div> </div>
</div>
<style>
#main {
width: 800px;
height: 500px;
background: black;
position: relative;
}
#main > div {
width: 100%;
height: 200px;
background: red;
position: fixed;
left: 0;
bottom: 0;
}
</style>