0
body {
    background-color: #FFFDEC;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    background-color: #04A7A6;
    margin: 0;
    display: block;
    z-index: 10;
}

.headermenu {
    xposition: fixed;
    top: 50px;
    left: 0;
    height: 50px;
    width: 100%;
    background-color: #333;
    color: #333;
    margin: 0;
    overflow: visible;
    z-index: 20;
}

此代码 => 不显示我的第二个标题...?我知道这与标题与标题菜​​单冲突有关,但它与正文背景不冲突?

4

1 回答 1

4

应该

xposition:fixed;

position:fixed;

?

工作小提琴

于 2013-01-25T16:27:18.060 回答