没有我的图像出现(不是服务器问题)

时间:2013-05-11 21:12:34

标签: html css

我检查了萤火虫和其他检查员的编码,我无法弄清楚。有时,当我按下刷新时,第一个帖子的图像会加载,但后续帖子的图像仍未显示。

我检查了是否有任何使用display:none样式的元素,我也不认为是这种情况。我也禁用了一个可能也是如此的插件。出于某种原因,firefox(和我的iphone上的safari)显示的是<p>,但没有在段落中显示图像。

这很有可能是因为我最近一直在做的CSS编辑过去一周,但我无法弄清楚可能导致这个问题的原因。

http://www.brightontheday.com

这是网站上示例图片的HTML:

 <img width="1" height="1" src="http://i2.wp.com/www.brightontheday.com/wp-content/uploads/2013/05/2013-03-16-15.25.37.jpg?resize=550%2C806" alt="cobalt and pink" class="pinit size-full wp-image-12254" style="display: inline-block;" data-lazy-loaded="true">

2 个答案:

答案 0 :(得分:2)

body .content img {
  max-width: 100%;
  height: auto;
  width: auto \9;
}

必须是

body .content img {
  max-width: 100%;
  height: auto;
  width: auto;
}

http://www.brightontheday.com/wp-content/themes/pagelines/pagelines-compiled-css-1_1368232018/第744行。

答案 1 :(得分:0)

问题是图像的宽度和高度设置为1 ..您需要将其更改为合适的像素大小,以便根据需要显示图像。