我正在使用这里描述的第一种技术来创建一个“全屏”背景图像,它与浏览器成比例地缩放。
我的图像容器的 CSS 是:
.fs-img {
position: fixed;
top: 4.5em;
right: 0;
bottom: 0;
left: 0;
background: url('image.jpg') no-repeat center center fixed;
background-size: cover;
}
但是我想max-width
在我的网站上设置一个 1200 像素。当然,将其应用于 body 元素对图像没有影响,因为它是position: fixed
.
那么是否有另一种方法可以让全屏图像具有最大宽度,同时仍保持固定在底部?
这是我正在测试的演示站点。