1

这是我的 css 代码,图像文件 (.png) 40*40px,它是一个小文件,我想将它分布在全身(背景)。我用“固定”的东西做了它工作,但是当我滚动它时它不会与其他元素一起移动

body{
background:url('short.png') fixed;
}

然后我尝试使用 repeat-x 或 repeat-y 但我不知道如何在 body 标签中实现这两个东西

body{
background:url('short.png') repeat-x;
}

记住我的图像文件是 40 * 40 像素,我想在任何地方应用,当我滚动它时,它应该与与“固定”事物相反的其他标签一起移动。

4

2 回答 2

2
background:url('short.png') 0 0 repeat;
于 2013-06-13T16:15:32.190 回答
1

我认为这会起作用:

   body{
   background-image:url('short.png')
   background-repeat: Repeat;  
   background-attachment:fixed;
   }
于 2013-06-13T16:12:37.883 回答