gpt4 book ai didi

html - 响应式封面图片

转载 作者:太空宇宙 更新时间:2023-11-04 02:26:04 25 4
gpt4 key购买 nike

我想为我的网站制作一个具有响应式背景的登录页面(http://www.montere.it/?lang=en)。在那个示例网站中,当屏幕较小时,图像会自动缩放到中心,这就是我想要的。目前我有这些代码,但它不起作用。

body {
height: 100%;
background-image: url(bg.jpg);
background-size: 100% auto;
}

.title {
text-align: center;
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 400px;
height: 100px;
color: white;
text-shadow:
}
<body>

<div class="cover-wrapper">
<div class="title">
<h1>Angel Shih Design.</h1>
</div>
</div> <!-- cover-wrapper -->
</body>

谢谢!

最佳答案

使用 background-size: cover;absolute 位置容器它可以工作:

.cover-wrapper {
height: 100%;
background-image: url(http://lorempicsum.com/futurama/350/200/1);
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-size: cover;
}

Fiddle here

关于html - 响应式封面图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37304641/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com