我用两个 div 容器创建了一个标头,一个#header-container
和一个#header
:
#header_container {
background:#eeeeee;
border:0px hidden;
height:100px;
position:fixed;
width:1000px;
top:0;
margin: auto;
display: block;
}
#header {
line-height:60px;
margin:0 auto;
display:block;
width:940px;
text-align:center;
}
我当然不能同时拥有“固定”和“中心”,那么如何在保持“固定”属性的同时将标题居中?
谢谢!