chrome 中图像宽度为零

发布于 2024-11-06 05:15:18 字数 207 浏览 0 评论 0原文

这在 FF、Opera、IE9 中显示正常,但在 Chrome 中,由于图像宽度为零,图像无法显示 知道为什么吗?

http://drbrent.sideradesign.com/photo-gallery/

谢谢

this displays fine in FF,Opera, IE9, but in Chrome, the images don't display due to a zero width on images
any idea why?

http://drbrent.sideradesign.com/photo-gallery/

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

懒的傷心 2024-11-13 05:15:18

删除以下样式可以解决问题

/* style.css:949 */
img {
  max-width: 100%;
}

Removing following styling fixes the issue

/* style.css:949 */
img {
  max-width: 100%;
}
小姐丶请自重 2024-11-13 05:15:18

我猜这是因为你没有指定 px 或 em 。用 chrome 检查后,它告诉我图像是 0x313,你的样式是 width="137";高度=“313”;
宽度应为“137px”,高度应为“313px”。这是问题之一。如果这不能解决问题,可能是其他原因。

编辑:就像@jibiel所说,这是你的img{max-width:100%;}

I'm guessing it's because you didn't specify px or em. upon inspection with chrome, it tells me that the image is 0x313 and your style says width="137"; height="313";
should be width"137px" height="313px". That's one of the problem. If that doesn't fix it, might be something else.

Edit: Like @jibiel said, it's your img{max-width:100%;}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文