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.
基本上我想在我正在制作的网站中为我的背景制作一个两色调的图像。顶部说 120px 将是灰色阴影,底部将是白色!现在通常我会用上半部分灰色和下半部分白色制作一条 1px 的线,这很明显,但我需要这个特定站点能够连续向下滚动页面,保持背景为白色而不重复整个模式,如果你懂我??
任何想法或建议都会很棒!在这里难住了......
您可以创建一个 120 像素高和 1 像素宽的灰色图片并使用background-repeat: repeat-x;我猜。
background-repeat: repeat-x;
我会这样做
background: #ffffff url(images/sample-pattern.jpg) repeat-x
这样,您的图像将沿顶部重复,但页面的其余部分将具有白色背景。