How make tree on Twitter Bootstrap background like on Twitter?

社会主义新天地 提交于 2019-12-08 11:14:48

问题


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.


回答1:


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.



来源:https://stackoverflow.com/questions/9251293/how-make-tree-on-twitter-bootstrap-background-like-on-twitter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!