Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个图像,我想用一个 css 重复 css 创建一个导航栏。我该怎么做?
我尝试了我的CSS:
<style> body { background-image:url('includes/img/menu-bg.gif'); background-repeat:repeat-x; } </style>
你想要它在导航栏中还是作为正文背景?如果你想要它在导航栏中,它看起来更像这样:
<style> nav { background: url(includes/img/menu-bg.gif) repeat-x; } </style>
您不需要文件周围的引号。它不是字符串,而是路径。另外,养成使用一个名为的图像文件夹的习惯;图片。我会质疑 gif 是否真的是网络上大多数图像的最佳文件类型。