我不知道如何做到这一点,但我想有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*/
}
我希望有一种方法可以做到这一点,因为我认为它会很好看在我的网站。 我会尝试寻找其他方式来做到这一点,像伪指令或东西。 如果我发现任何东西,我将它张贴在这里!