作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
问题是我有这个
<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/
我是一名优秀的程序员,十分优秀!