css背景颜色不能与<div> </div>一起使用

时间:2013-01-25 16:25:24

标签: html css background-color

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;
}

此代码=&gt;不显示我的第二个标题......?我知道这与标题相冲突的标题有关,但是它与正文背景没有冲突吗?

1 个答案:

答案 0 :(得分:4)

应该

xposition:fixed;

position:fixed;

Working Fiddle