图像仅在 IE9 中不显示
该网站是 www.bhct.bm
由于某些原因,主页上的图像在 IE9 中无法显示。在其他浏览器中看起来不错。
无法判断问题是什么...
这是我所看到的 -
The site is www.bhct.bm
The image on the main page doesn't come up for some reason in IE9. Looks fine in other browsers.
Unable to tell what the problem is...
Here is what I'm seeing -
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
删除
img
标签上的width="auto"
属性,然后它看起来就很好了。更新:请看下面 Gumbo 的评论。
Remove the
width="auto"
attribute onimg
tag then its looking fine.UPDATE : Look Gumbo's comment below.
将图像宽度指定为
width=955px
,它设置为 auto,因为您似乎没有在标签或外部样式表中指定任何宽度。width:auto
是默认值specify the image width as
width=955px
, it is set to auto because it does not seem you specify any width within the tag or external style sheet.width:auto
is default将
width="960px"
添加到您的图片中。现在它设置为width="auto"
。Add
width="960px"
to your img. Right now it is set towidth="auto"
.