CSS部分: <style type="text/css"> html,body{ overflow:hidden; margin:0px; width:100%; height:100%; } .virtual_body{width:100%; height:100%; overflow-y:scroll; overflow-x:auto; } .fixed_div{position:absolute; z-index:2009; bottom:0px; left:5%; width:88%; height:30px; border:1px solid red; background:#e5e5e5;} </style> DIV部分: <div class="fixed_div">I'm still here!</div> <div class="virtual_body"> <!-- body begin --> <div style="height:1000px; width:500px; background:#ccc">contents</div> <!-- body over --> </div><!-- end virtual_body -->