居中 CSS 背景适合高度
首先这是我当前的代码。
<div id="background">
<img src="src/1080pTux.png" height=100%>
</div>
#background{
position:fixed;
margin-left:auto;
margin-right:auto;
z-index: -5000;
}
图像保持适合高度,保持纵横比,并位于所有内容后面,但我希望它始终居中。我怎样才能做到这一点以及我做错了什么?
谢谢!
first off here's my current code.
<div id="background">
<img src="src/1080pTux.png" height=100%>
</div>
#background{
position:fixed;
margin-left:auto;
margin-right:auto;
z-index: -5000;
}
The image stays fit to height, maintains aspect ratio, and stays behind everything, but i want it positioned centered at all times. How can I accomplish that and what am I doing wrong?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要使用背景图像。
You may want to use background-image.
您可以尝试这样的操作:
即使它说文本对齐,它也会将整个页面居中对齐,因为您将整个正文修改为居中。
You could try somthing like this:
Even though it says text align it will align the whole page in the center since your modifying the whole body to be centered.