请原谅我的英语不好。
我决定在我的wordpress博客中插入两个不同的背景,但我发现了一些问题。我尝试在顶部中心插入固定背景,并在第一个背景下从顶部中心垂直重复第二个背景。这是我使用的代码:
body {
margin: 0; padding: 0;
font: 62.5% "Lucida Grande", "Lucida Sans Unicode", Sans-Serif;
color: #000; text-align: left;
background-image: url(http://i39.servimg.com/u/f39/16/16/32/12/topgro11.jpg), url(images/bg.gif);
background-repeat: no-repeat, y-repeat;
background-position: top center, top center;
}
不幸的是,正如你在这里看到的那样 - > http://www.picopod.it/结果令人失望......我在哪里做错了?感谢您的支持!
更新: 我通过使用“repeat-y”更改“y-repeat”解决了我的问题。我做了多么愚蠢的错误! Ahahaha
谢谢大家!