50% 背景 +坡度

发布于 2024-09-06 00:46:00 字数 314 浏览 6 评论 0原文

我想在我的网页中添加渐变背景(标有黄色边框的区域是实际内容显示的位置),并且我希望它只占页面的 1/2(底部): 替代文本 http://img14.imageshack.us/img14/8453/50gradientbackground.png< /a>

我相信这可以通过 CSS 实现,但到目前为止我只能获得渐变背景(占据页面的整个高度)。

预先非常感谢您!

I want to add a gradient background to my web page (the area marked with yellow border is where the actual content is displayed) and I want it to take just 1/2 of the page (the bottom part):
alt text http://img14.imageshack.us/img14/8453/50gradientbackground.png

I believe this is possible with CSS, but so far I have only managed to get a gradient background (taking the whole height of the page).

Thank you very much in advance!

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

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

发布评论

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

评论(2

戒ㄋ 2024-09-13 00:46:00

你可以用这样的方法来做到这一点:

#background {
background: url('GRADIENT-IMAGE-URL') 50% center THE-KIND-OF-REPEAT;
height: THE-HEIGHT;
width: THE-WIDTH;
}

这里的 50% 意味着背景图像将位于距顶部 50% 的位置。

You can do it with something like this:

#background {
background: url('GRADIENT-IMAGE-URL') 50% center THE-KIND-OF-REPEAT;
height: THE-HEIGHT;
width: THE-WIDTH;
}

50% here means that the background image will be positioned 50% from the top.

甚是思念 2024-09-13 00:46:00

这是我最终设法解决的解决方案:

background: url('IMAGE-URL') bottom repeat-x;  

This is the solution that I have managed to work out eventually:

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