代码在这里:
<div class="entry-page-image">
<div class="featured-image-container">
<?php the_post_thumbnail('large'); ?>
</div>
</div><!-- .entry-page-image -->
受此 CSS 影响:
.entry-page-image { position: fixed; display: inline-block; top: 0; margin: 0 0 30px 30px; margin-left: 260px; float:left; width: 100%; }
.featured-image-container { height: 100%; width: auto; }
.featured-image-container img { height: 100%; width: auto; }
但是在 Firefox 中,浏览器采用标准的 1024 像素高的图像,并且不会将其缩小到浏览器窗口高度的 100%。我知道这是一个很常见的问题,但我似乎无法将我的代码改写成正确的效果。
有人愿意为我转移它吗?