我想重新创建以下标题:
问题是内容在白色部分居中。灰色是正文的背景,标题是屏幕的 100%。
我现在拥有的是:
CSS
.top_left {
background:#3c4d74;
}
.top_right {
background:#2f3a5a;
}
.top_center {
background:#3c4d74 url(http://img85.imageshack.us/img85/2816/headerbgo.jpg) no-repeat right top;
height:140px;
}
#page,
.top_center {
max-width:1000px;
margin:0 auto;
}
#page {
background:#FFF;
}
body {
background:#DEDEDE;
}
HTML
<body>
<div id="top-header">
<div class="top_left"></div>
<div class="top_center">
<a href="#">LOGO</a>
</div>
<div class="top_right"></div>
</div>
<div id="page" class="hfeed">
MY content bla bla bla
</div>
</body>
您可以在http://jsfiddle.net/gTnxX/上看到它(我将最大宽度设置为 600 像素而不是 1000 像素,以便您可以在小提琴上看到它)。
如何在任何分辨率下使左侧软蓝色和右侧硬蓝色?