CSS: 防止背景滚动
CSS: prevent background from scrolling
我创建了一个模态弹出框。我希望在滚动时固定背景主体。我用谷歌搜索并发现添加 background-attachment: fixed;
但没有成功。
背景附件是否已修复;只适用于图像?如 (w3schools.com/cssref/pr_background-attachment.asp)
中所述
/* Set background image to fixed (don't scroll along with the page)*/
background-attachment: fixed;
所以我只是猜测一下是否可行。
在弹出窗口打开时将 overflow: hidden;
添加到页面正文。
我创建了一个模态弹出框。我希望在滚动时固定背景主体。我用谷歌搜索并发现添加 background-attachment: fixed;
但没有成功。
背景附件是否已修复;只适用于图像?如 (w3schools.com/cssref/pr_background-attachment.asp)
中所述/* Set background image to fixed (don't scroll along with the page)*/
background-attachment: fixed;
所以我只是猜测一下是否可行。
在弹出窗口打开时将 overflow: hidden;
添加到页面正文。