Internet Explorer 不显示 gif 文件
我的朋友正在制作一个网站。某些页面将 gif 图像文件显示为链接。它们在 Firefox 和 Chrome 中显示正确,但在 Internet Explorer 中显示不正确。如何让图像在 Internet Explorer 中显示?下面是一行应显示 gif 链接的 html 代码:
<a href="kendo.htm"><img src="arrowprev.gif" alt="previous page arrow"/></a>
| <a href="index.htm">HOME</a>
| <a href="festivals.htm"><img src="arrownext.gif" alt="next page arrow"/></a>
感谢您的帮助!
My friend is making a website. Some of the pages display gif image files as links. They display correctly in Firefox and Chrome but not in Internet Explorer. How can I get the images to display in Internet Explorer? Here is a line of html code that should display the gif links:
<a href="kendo.htm"><img src="arrowprev.gif" alt="previous page arrow"/></a>
| <a href="index.htm">HOME</a>
| <a href="festivals.htm"><img src="arrownext.gif" alt="next page arrow"/></a>
Thanks for the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试以下两个链接:
Try these two links:
正在使用的 .gif 文件与 Internet Explorer 8 根本不兼容。我不知道为什么,因为 IE 8 确实支持 .gif 文件。当我尝试直接使用 IE8 打开 .gif 文件本身时,它不显示。不过IE8可以直接打开并显示其他.gif文件。
The .gif files being used are simply not compatible with Internet Explorer 8. I am not sure why though since IE 8 does support .gif files. When I try to open the .gif file itself directly with IE8, it does not display. IE8 can directly open and display other .gif files though.
这些图像的色彩空间很可能是 CMYK,而不是 RGB。他是一位更擅长印刷而不是网络的平面设计师吗?
Chances are that the colorspace for those images is CMYK, not RGB. Is he a graphic designer who is more at home in print than the web?