これを行う方法はわかりませんが、2つの繰り返しテクスチャが必要です。1つは左に繰り返し、もう1つは右に繰り返します。
それ以外の:
#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*/
}
私のウェブサイトでは見栄えが良いと思うので、これを行う方法があることを願っています。疑似コマンドなどを使用するなど、これを行う他の方法を検討します。何か見つけたらここに投稿します!