如果我的问题很愚蠢,我很抱歉,但我不明白“关于视口的图片是固定的”是什么意思,以及它如何与以下内容相关联:
假设我们有一个 html 元素<div class="background"></div>
和一些样式
.background {
background: url(some-image.jpg) no-repeat fixed;
height: 500px;
width: 150px; /* suppose that this width is less than a width of the picture */
}
在这种情况下,背景图像不会出现。我不明白为什么以及如何与视口的想法相关。