GitHub 页面 https://chryspenalber.github.io/hercules/
存储库: https ://github.com/chryspenalber/hercules
我通过 css 插入的图像未显示在 github 页面中,但在 localhost 中显示。我做错了什么?
我看了一些关于它的文章,包括区分大小写,但都不起作用。我做了其他显示的项目,我不明白我在这个项目上做了什么不同。
这只是一个例子,但它发生在所有图像上。
<div class="img-overlay"></div>
<div id="topo">
<a href="#">
<img src="assets/images/chevron-double-up-white.svg" alt="">
</a>
</div>
.img-overlay {
position: absolute;
top: -300px;
left: 0;
width: 100%;
height: 2400px;
background: linear-gradient(to bottom, transparent 70%, var(--bg-color) 100%), url(/assets/images/bg-hercules.jpg) no-repeat top center / cover;
opacity: 1;
z-index: -1;
}