因为非IE的主流浏览器都支持position:fixed;所以只需要给IE设置一下fixed效果。第一步让IE下#menu具有绝对定位* html #menu {position:absolute;}/*only for ie*/结果看到有两个纵轴滚动条,外围是html的,内侧是body的。第二步去掉外侧滚动条,因为外侧没有滚动效果html {overflow-x:auto; overflow-y:hidden;}