我不知道该怎么做,但我想要 2 个重复的纹理,一个向左重复,一个向右重复。
代替:
#header {
background-image : Url('My_Two_Textures_Combined.png');
background-repeat : repeat-x; /*Which repeats my joined textures a long the x axis*/
}
我想:
#header {
background-image : Url('My_Left_Texture');
background-repeat : repeat-x-left; /*Which would ideally repeat my texture to the left on the x axis*/
background-image : Url('My_Right_Texture');
background-repeat : repeat-x-Right; /*Which would ideally repeat my texture to the right on the x axis*/
}
我希望有办法做到这一点,因为我认为它在我的网站上看起来不错。我会尝试寻找其他方法来做到这一点,比如使用伪命令或其他东西。如果我发现任何东西,我会在这里发布!