css渐变与图像条高度问题

发布于 2024-11-05 17:43:46 字数 241 浏览 7 评论 0原文

如何使用我的线性渐变图案条 mystrip.jpg (1x1024 px) 作为网页的主体背景?我需要水平重复它本身并使其高度为身体高度的 100%。

我尝试过

body{background:url(mystrip.jpg) repeat-x;} 

,但每当我的正文内容超过 1024px 高度时,我就可以清楚地看到条形图案的底部边框。

谢谢卢卡

How could I use my linear-gradient pattern strip,mystrip.jpg (1x1024 px), to be the body background of my web page? I need to repeat itself horizontally and have its height 100% of the body height.

I tried with

body{background:url(mystrip.jpg) repeat-x;} 

but whenever my body content is exceding 1024px height,I can see clearly the bottom border of my strip pattern.

Thanks

Luca

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

余生共白头 2024-11-12 17:43:46

只需设置与底部颜色相匹配的背景颜色即可。

body{background: #f00 url(mystrip.jpg) repeat-x;} 

或者无论是什么颜色。

或者,您可以使用背景大小,但这可能不会使它看起来很好。

我建议尽可能使用 CSS 渐变。

Just set a background colour that matches the bottom color.

body{background: #f00 url(mystrip.jpg) repeat-x;} 

Or whatever the colour is.

Alternatively you can use background-size, but that likely won't make it look good.

I'd recommend using CSS gradients where possible as well.

缱倦旧时光 2024-11-12 17:43:46

您还应该设置背景颜色,以便图像结束的地方由颜色接管。使背景颜色与图像的底部颜色相同。

例子:

body{ background: #ccc url(mystrip.jpg) repeat-x; }

You should set a background color also, so that where the image ends, the color takes over. Make the background color the same as the bottom color of your image.

Example:

body{ background: #ccc url(mystrip.jpg) repeat-x; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文