固定位置にヘッダーを保持しながらすべてを集中させるのに問題があります。なぜ誰かが私を助けることができますか?ここで固定位置にヘッダーを維持したままセンタリングする問題
は、ここに私の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;
}
正確に何をセンターにしたいですか?経験divのテキスト? –