我有这个html表,在其中一个列中有一个用于查看的图像。图像在ff和chrome上正确显示,但在图像中有一些缩略图或某些东西。请帮助我,因为我是空白。
我附上了两张照片。
chrome& FF
,这个是ie。
答案 0 :(得分:1)
实际上我使用了以下HTML:
<div>
<img alt="view" style="background-image:'/sampleimg.png'" href=""/>
</div>
这就是IE上的暂停问题。所以我已经将html修改为
<div style="background-image:'sampleimg.png'">
<img alt="view" href=""/>
</div>
问题解决了