0

我有以下设置

background-image: url(image1.png) , url(image2.png);

想法是image1.png到处重复,而image2.png应该只从页面顶部开始 200px 并且仅repeat-x. 我知道你可以像这样定位背景:

background-position: top left, left bot etc...

但是我如何将它定位在距页面顶部 200px 的位置?并成功repeat-x

4

1 回答 1

1

您需要使用背景的简写:

{background: url(image1.png) repeat, url(image2.png) 0 200px repeat-x;}

http://www.css3.info/preview/multiple-backgrounds/

于 2013-02-01T17:08:31.037 回答