我有一个带有URL的图像 http://nba2kcontest.com/fantasy/img/player.png
当我直接转到该URL时它是可见的,但是当我使用html img标签时却不可见:
<img src="http://nba2kcontest.com/fantasy/img/player.png">
我不知道问题出在哪里,因为许可也是0777
我不知道是什么,但是当我将图片player.png
替换为player.svg
时,它就可以了!
答案 0 :(得分:-1)
下面是一个镜头,也许您在父容器上设置了背景色,导致您的png不可见。
.img-container{
background:#fff;
padding:10px
}
<div class="img-container">
<img src="http://nba2kcontest.com/fantasy/img/player.png">
</div>