如何让 Twitter Bootstrap 背景上的树像 Twitter 上一样?

发布于 2025-01-04 19:55:08 字数 163 浏览 1 评论 0原文

我添加了以下内容:

body {
  background-image: url(https://twimg0-a.akamaihd.net/images/themes/theme2/bg.gif);
}

但是树被复制了几次并且没有固定在左侧。

I've added the following:

body {
  background-image: url(https://twimg0-a.akamaihd.net/images/themes/theme2/bg.gif);
}

But the tree is copied several times and not fixed on the left.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赠意 2025-01-11 19:55:08

添加no-repeat(以防止重复)、top left(以将图像保持在所需位置)和fixed(以保持图像滚动时已修复):

background: url(http://...) no-repeat top left fixed;

我在 jsFiddle 上编写了一个演示。

Add no-repeat (to prevent repetition), top left (to keep the image at the desired location) and fixed (to keep the image fixed when you scroll):

background: url(http://...) no-repeat top left fixed;

I have written a demo on jsFiddle.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文