<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
*{padding:0; margin:0}
html{}
body{}
.fixed{position:fixed;z-index:999}
.fixed-top { bottom:auto;top:0px;}
.fixed-bottom { bottom:0px;top:auto;}
.fixed-left {right:auto;left:0px;}
.fixed-right {right:0px;left:auto;}
/* ie6 fixed hack*/
html{_overflow:hidden}
body{_height:100%; _overflow:auto;}
.fixed{_position:absolute;}
/* ie6 fixed hack end*/
</style>
</head>
<body>
<div style="height:10000px; background:#666"></div>
<div style="background:red; height:50px; width:100%;" class="fixed fixed-top"></div>
<div style="background:blue; height:50px; width:100%;" class="fixed fixed-bottom"></div>
</body>
</html>