【发布时间】:2011-11-27 12:15:49
【问题描述】:
在每个 Twitter 个人资料页面上都有固定的背景图片。我怎么能在我的网站上做同样的事情?
我想在 CSS 中找到解决方案
【问题讨论】:
标签: css twitter background-image fixed
在每个 Twitter 个人资料页面上都有固定的背景图片。我怎么能在我的网站上做同样的事情?
我想在 CSS 中找到解决方案
【问题讨论】:
标签: css twitter background-image fixed
【讨论】:
在 CSS 中使用 background-attachment: fixed;。示例 CSS:
body {
background-image: url('bg.png');
background-repeat: no-repeat;
background-attachment: fixed;
}
【讨论】:
【讨论】:
background-attachment:固定应该是技巧。
【讨论】: