作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用氩气模板,但我无法更改部分背景
.section-shaped .shape-style-1.shape-primary {
background: linear-gradient(150deg, #281483 15%, #8f6ed5 70%, #d782d9 94%);
}
我将背景更改为以下值:
background-image: url(../img/theme/landing3.jpg);
但它仍然显示旧的背景
这是HTML代码:
<div class="position-relative">
<!-- Hero for FREE version -->
<section class="section section-lg section-hero section-shaped">
<!-- Background circles -->
<div class="shape shape-style-1 shape-primary">
<span class="span-150"></span>
<span class="span-50"></span>
<span class="span-50"></span>
<span class="span-75"></span>
<span class="span-100"></span>
<span class="span-75"></span>
<span class="span-50"></span>
<span class="span-100"></span>
<span class="span-50"></span>
<span class="span-100"></span>
</div>
最佳答案
您的 URL 周围缺少引号...
所以不是这个:
background: url(../img/theme/landing3.jpg);
你需要这样做:
background: url("../img/theme/landing3.jpg");
关于html - 如何更改版 block 背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57136244/
我是一名优秀的程序员,十分优秀!