我想要一个垂直拉伸的背景图像并定位在页面的中心。
我认为这很简单,但似乎我无法以任何方式将其居中。这是我的 CSS 代码:
HTML
<div id="background">
<img src="bkg.jpg" class="stretch" />
</div>
CSS
#background {
width: auto;
height: 100%;
position: fixed;
z-index: -999;
}
.stretch {
width: auto;
height: 100%;
}
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-color: #525252;
}
你有什么想法可以让我以这个背景为中心吗?它现在与左侧对齐。谢谢!