现在我有...
<header id="background-color">
<img src="header_image.gif" alt="header">
<h1>Header</h1>
</header>
相关的CSS是......
header {
background: #0072bc;
width: 70%;
margin-left: auto;
margin-right: auto;
text-align: center;
}
#background-color {
background: #0066CC;
width: 100%;
}
这显然将图像置于 h1 之上。我想做的是左对齐图像并使 h1 相对于整个页面居中(不仅仅是剩余空间)。
当我说左对齐时,我的意思是相对于设置为 70% 并带有自动边距的正文和标题。我不知道该怎么做,我对网页设计完全陌生。
谢谢。