【发布时间】:2021-10-30 15:44:00
【问题描述】:
我在 github 页面上部署的应用程序版本有问题,我收到损坏的图像
github页面链接:https://moeabraham.github.io/module-1-proj/ github链接:https://github.com/moeabraham/module-1-proj
【问题讨论】:
标签: javascript html css image github
我在 github 页面上部署的应用程序版本有问题,我收到损坏的图像
github页面链接:https://moeabraham.github.io/module-1-proj/ github链接:https://github.com/moeabraham/module-1-proj
【问题讨论】:
标签: javascript html css image github
图片标签上有一个额外的/。
从一开始就删除它应该可以工作。
你目前有这个:
<img src="/images/juve.svg" class="rounded static-img" name="juventus">
改用这个:
<img src="images/juve.svg" class="rounded static-img" name="juventus">
【讨论】: