gpt4 book ai didi

php - 无法显示背景 :url from css in a php file

转载 作者:行者123 更新时间:2023-11-27 23:15:49 24 4
gpt4 key购买 nike

问题是我有这个

<header id="header">

</div>

在CSS中我有这个

#header{
min-height:calc(100vh - 94px);
background: linear-gradient(rgb(187, 139, 139),rgba(0, 0, 0, 0.5)),
url(/images/image.png);
background-position: center;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
position: relative;
}

当我从 index.html 运行时,会显示 image.png,但是当我从 .php 文件输入时,它不会显示。

最佳答案

您访问文件的路径似乎有误。在开头添加一个点或删除开头的第一个斜杠。例如:

background: linear-gradient(rgb(187, 139, 139),rgba(0, 0, 0, 0.5)),
url("./images/image.png");

background: linear-gradient(rgb(187, 139, 139),rgba(0, 0, 0, 0.5)),
url("images/image.png");

关于php - 无法显示背景 :url from css in a php file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58279937/

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