如何让 Twitter Bootstrap 背景上的树像 Twitter 上一样?
我添加了以下内容:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加
no-repeat
(以防止重复)、top left
(以将图像保持在所需位置)和fixed
(以保持图像滚动时已修复):我在 jsFiddle 上编写了一个演示。
Add
no-repeat
(to prevent repetition),top left
(to keep the image at the desired location) andfixed
(to keep the image fixed when you scroll):I have written a demo on jsFiddle.