gpt4 book ai didi

css - 具有纯色的背景渐变

转载 作者:技术小花猫 更新时间:2023-10-29 11:20:46 25 4
gpt4 key购买 nike

我必须执行以下操作:div 的顶部是渐变图像,然后在底部它继续作为纯色。我可以用简单的 CSS 做到这一点吗?我知道以下内容无效。

{background: url(img/right_column_bg_top.png) no-repeat rgba(10,26,39,1) top 225px;

注意:图像填充的前 225px 应该没有背景色

最佳答案

据我所知,你需要对纯色使用渐变,这样你才能正确设置它。

CSS 将是:

.imgbg {
width:255px;
height:355px;
background: url('http://blue2.hu/danone/nogravity/img/right_column_bg_top.png'), linear-gradient(90deg, #f7d8e8, #f7d8e8);
background-position: 0px 0px, 0px 112px;
background-repeat: no-repeat, no-repeat;
background-size: 255px 112px, 255px 233px;
}

这里是 your updated fiddle

基本支持对于支持多种背景的浏览器应该没问题,唯一的问题是 IE <= 8。渐变背景可能是 IE9 的问题,但我认为它应该可以工作(我无法测试 IE9)。如果这真的是个问题,请参阅 colozilla进行修复。

关于css - 具有纯色的背景渐变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17924415/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com