我正在为 tumblr 主题进行一些编码并遇到了这个问题:“背景附件:固定”不会阻止背景图像上下滚动;它仍然随着内容移动。
HTML
<div id="content">
<div id="posts">
posts...
</div>
</div>
CSS
#content {
background-image: url('{image:Background Image}');
background-repeat: no-repeat;
background-attachment: fixed;
height: auto;
width: calc(100% - 300px);
float: right;
}
宽度也不起作用,但有人告诉我这就是固定的工作方式,我只是想解决图像仍然移动的事实。