好的,所以我的网站{{3}},我有一个横幅,它重复。我问的是如何解决这个问题。这是我的代码:
some-example.s
如果它有所不同,谷歌Chrome和Safari都是一样的。我不知道它在其他浏览器中的外观。
答案 0 :(得分:2)
我认为你根本不想要横幅展开,所以我会避免使用background-size
。相反,请定义background-color
black
:
background-repeat: no-repeat;
background-color: black;
以下是结果的屏幕截图:
答案 1 :(得分:1)
检查出来:
div#title {
background: #00ff00 url("banner.gif") no-repeat fixed center;
}
在此处阅读更多内容:http://www.w3schools.com/cssref/css3_pr_background.asp
答案 2 :(得分:0)
尝试使用:
background-repeat:no-repeat;
background-size:cover;