为什么HTML背景图像不能在VS代码的实时服务器中显示?

我在VS代码中使用实时服务器时遇到问题。

当我在HTML代码中使用背景图像时,当我在没有实时服务器的情况下打开该文件时,它可以正常工作。但是当我尝试使用实时服务器打开它时,它没有显示背景图像。

1.这是我的html代码 my html code

2.这是我在没有实时服务器的情况下打开Chrome时的输出 output in chrome without live server

  1. 以下是我使用实时服务器打开它时的输出 output using live server

解决方案

您应该使用"绝对"路径的"相对"路径。这意味着以‘/’(绝对)或以点‘开头。’(相对)。 在实时服务器环境中,‘/’指向您的根网站目录。

确保图像位于html的同一文件夹或子文件夹中。

您的实时服务器无法访问您的E:驱动器。

<img src="/image-in-root.jpg" alt="image in same dir as index.html"/>
or
<img src="./image-in-root.jpg" alt="image in same dir as index.html"/>

or
<img src="../../image-2-dirs-up.jpg" alt="image 2 dirs up from this file position"/>

or
<img src="/images/image-in-image-dir.jpg" alt="image in /image dir from root"/>
or
<img src="./images/image-in-image-dir.jpg" alt="image in /image dir one level below current"/>

相关文章