解决方法
您可以执行以下操作来创建固定标头:
<style> body { margin: 0; } div.header { position: fixed; height: 50px; width: 100%; } div.content { padding-top: 50px; } </style> <body> <div class="header">header</div> <div class="content">content</div> </body>
也许在这里查看ie5.5 / ie6.0修复:http://www.howtocreate.co.uk/fixedPosition.html