chrome 中图像宽度为零
这在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
删除以下样式可以解决问题
Removing following styling fixes the issue
我猜这是因为你没有指定 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%;}