Div定位泛滥菜单

时间:2014-10-06 19:41:45

标签: html css

我试图定位一个包含我的谷歌日历的div,但它仍然充斥着我的菜单。

如何制作div以使div更位于页面上?

http://lichfieldrooms.uk/calendar.html

1 个答案:

答案 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%;
}