一些缩略图即将进入,即在图像上

时间:2014-03-27 14:33:20

标签: html css image internet-explorer thumbnails

我有这个html表,在其中一个列中有一个用于查看的图像。图像在ff和chrome上正确显示,但在图像中有一些缩略图或某些东西。请帮助我,因为我是空白。

我附上了两张照片。

chrome& FF chrome and ff

,这个是ie。

ie

1 个答案:

答案 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>

问题解决了