-1

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

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

这很可能是因为我在过去一周一直在进行最近的 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">
4

2 回答 2

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 行。

于 2013-05-11T21:25:48.997 回答
0

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

于 2013-05-11T21:22:20.267 回答