答案 0 :(得分:0)
您可能希望删除标题和.menu
类中固定的位置。
.menu {
background: none repeat scroll 0 0 #e6e6e6;
margin-left: auto;
margin-right: auto;
//position: fixed; ////remove this////
top: 85px;
z-index: 99;
}
Header {
border-bottom: 0 solid #eee;
overflow: auto;
//position: fixed; ////and remove this////
width: 100%;
}
最终代码:
.menu {
background: none repeat scroll 0 0 #e6e6e6;
margin-left: auto;
margin-right: auto;
top: 85px;
z-index: 99;
}
Header {
border-bottom: 0 solid #eee;
overflow: auto;
width: 100%;
}