gpt4 book ai didi

html - 部分背景图像和线性渐变不起作用

转载 作者:行者123 更新时间:2023-11-28 04:28:01 24 4
gpt4 key购买 nike

我正在尝试添加具有线性渐变的背景图像。

如果我添加没有线性渐变的图像,图像就会出现。一旦我添加线性渐变,它们都不起作用,并且默认恢复为该部分中的原始背景颜色。

在下面的 CSS 中,我尝试将背景图片合并到一个 CSS 声明中,并用逗号分隔。

.education {
background: linear-gradient(rgba(141, 153, 174, 0.8), (rgba(141, 153, 174, 0.5)), url("samuel-beckett-bridge.jpg") no-repeat fixed);
background-size: cover;
}
<!-- // Education -->
<section id="education" class="education">
<div class="content-wrap">
<h2>Education</h2>

<!-- School details: copy this whole block to add more schools. -->
<h3>School name 2017 - present</h3>
<p>Designation received</p>

<!-- Add as many paragraphs as you need. -->
<p>Summary.</p>
<!-- End of school details. -->
</div>
</section>

最佳答案

绝对是:

.education {
background: linear-gradient(rgba(141, 153, 174, 0.8), rgba(141, 153, 174, 0.5)), url("samuel-beckett-bridge.jpg") no-repeat fixed;
background-size: cover;
}

实时解决方案:https://jsfiddle.net/v47dk902/

关于html - 部分背景图像和线性渐变不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48370135/

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