0

在将标题保持在固定位置时,我无法将所有内容居中。谁能帮我弄清楚为什么?

这是我的 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;
}
4

1 回答 1

3

left您只需要right删除.header.

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

于 2012-05-04T15:08:06.283 回答