在将标题保持在固定位置时,我无法将所有内容居中。谁能帮我弄清楚为什么?
这是我的 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;
}