我疯狂地用谷歌搜索,发现我需要使用 background-repeat 属性,但由于某种原因,它对我不起作用。我确定我只是犯了一个愚蠢的错误,但我一辈子都想不通!
提前致谢!
body {
background-image: url('../images/main_bg.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}
我疯狂地用谷歌搜索,发现我需要使用 background-repeat 属性,但由于某种原因,它对我不起作用。我确定我只是犯了一个愚蠢的错误,但我一辈子都想不通!
提前致谢!
body {
background-image: url('../images/main_bg.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}
您的代码似乎有效,您在哪里看到重复发生(或者您是否有更多代码可以触发该重复)?
我没有看到任何问题:http:
//jsbin.com/odenet/1/
笔记:
background-repeat:no-repeat;
- 应该管用。
如果可行,你可以试试这个吗?
background:url(images/main_bg.png) no-repeat;