在每个Twitter个人资料页面上都有固定的背景图片。我怎么能在我的网站上做同样的事情?
我想在CSS中找到解决方案
答案 0 :(得分:3)
答案 1 :(得分:0)
在CSS中使用background-attachment: fixed;
。 CSS示例:
body {
background-image: url('bg.png');
background-repeat: no-repeat;
background-attachment: fixed;
}
答案 2 :(得分:0)
答案 3 :(得分:0)
background-attachment:修复应该是技巧。