在将标题保持在固定位置时居中的问题

时间:2012-05-04 15:01:10

标签: html css

我在将标题保持在固定位置的同时将问题集中在一起。任何人都可以帮我找出原因吗?

这是我的HTML

<div id="wrapper">
   <div class="header">....</div>
   <div class="experiences">...</div>
</div>

这是CSS:

#wrapper {
    margin: 0 auto 0 auto;
    width: 1000px;
    height: auto;
}

.header {
    background-color: #222;
    color: white;
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    height: 130px;
    padding: 20px;
    width: 1000px;
    margin: 0 auto 0 auto;
}

.experiences {
    background-color: #eee;
    padding: 20px;
    * padding-top: 190px;
    width: 1000px;
    margin-top: 170px;
}

1 个答案:

答案 0 :(得分:3)

您只需要删除left中的right.header声明。

其余部分应该已经居中(除非您使用非常旧版本的IE ...)。