我也想将我背景中的重复背景图像包含在我的导航栏中。
#navigation-top, #navigation-bottom {
background-color: #fff;
width: 100%;
}
我也想将我背景中的重复背景图像包含在我的导航栏中。
#navigation-top, #navigation-bottom {
background-color: #fff;
width: 100%;
}
您可以使用repeat-x
或repeat-y
,具体取决于图像和导航栏的方向。假设您的导航栏是水平的:
#navigation-top, #navigation-bottom {
width: 100%;
background: url(images/background_image.gif) repeat-x;
}
您网站上的问题是“image.jpg”不存在。
#navigation-top, #navigation-bottom {
background: #fff url('path/to/image.jpg') repeat;
width: 100%;
}
如果您只希望它从左到右(而不是上下)重复,请使用repeat-x
.
background: #ffffff url("yourimg") repeat-x;
复制所有与背景相关的 CSS#canvas-wrapper
并将其粘贴到#navigation-top
, #navigation-bottom
.