背景にある繰り返しの背景画像をナビゲーション バーにも含めたいと思います。
#navigation-top, #navigation-bottom {
background-color: #fff;
width: 100%;
}
背景にある繰り返しの背景画像をナビゲーション バーにも含めたいと思います。
#navigation-top, #navigation-bottom {
background-color: #fff;
width: 100%;
}
あなたのサイトの問題は、「image.jpg」が存在しないことです。
#navigation-top, #navigation-bottom {
background: #fff url('path/to/image.jpg') repeat;
width: 100%;
}
左から右に繰り返すだけにしたい (上下ではなく) 場合は、 を使用しますrepeat-x
。
background: #ffffff url("yourimg") repeat-x;