我创建了一个用户的github页面。
现在,假设我在仓库的根目录有一个图像文件,它是Images/Emoticons/Cool.png
我尝试将该图像插入到我的主要Index.html
文件中。
我写 -
-<img src="\images\emoticons\cool.png">
,在线和离线均无显示
-<img src="images\emoticons\cool.png">
,在线上没有任何显示,但离线时我可以看到图像
-<img src="..\images\emoticons\cool.png">
,在线和离线均无显示
应该做什么?
最佳答案
由于该站点由Linux服务器提供服务,因此路径区分大小写。
为了使此工作有效,请在提供的URL中将emoticons
替换为Emoticons
。
另外,在URL中,将反斜杠(\
)替换为正斜杠(/
)。
以下HTML代码应正确显示图像
<img src="images/Emoticons/cool.png" alt="hi" class="inline"/>
关于html - github页面和相关链接中的图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17141612/