你好 stackoverflow 社区,
我的固定标题有问题。我的 html 结构看起来像这样:
<div id="site_wrapper">
<div id="site_header">Header</div>
</div>
CSS看起来像这样:
div#site_wrapper {
max-width:1500px; min-width:900px;
}
div#site_header {
position:fixed; left:50%; top:0px; z-index:10;
height:160px; width:1500px;
margin-left:-750px;
background-color:#fff;
}
我的问题是,我需要将标题居中并固定宽度为 1500 ...
一些想法?