在这个 Wordpress 主题中,我将使用不同高度的图像。所以,我正在尝试(使用 Firefox 的“检查元素”来测试)修改 css 以使 div 的高度随着图像高度的增加而增长。
通过检查图像元素,我们可以看到 a 中的图像<a>
,即a 中的图像<div>
:
<article id="post-81" class="post-81 post type-post status-publish format-image hentry category-artwork category-photos category-writing tag-panache">
<header class="entry-header"> … </header>
<!--
.entry-header
-->
<div class="entry-thumbnail">
<a rel="bookmark" href="http://fontfoliodemo.wordpress.com/2011/07/07/jellyfish/">
<span class="entry-format"> … </span>
<img class="attachment-featured-home-small wp-post-image" width="282" height="211" title="Jellyfish" alt="Jellyfish" src="http://fontfoliodemo.files.wordpress.com/2011/07/img_0429.jpg?w=282&h=211&crop=1"></img>
</a>
</div>
</article>
但如果我将这 3 个元素设置为height:auto
,则<div>
计算值将为0px
。为什么?跟<a>
元素有关系吗?(在其他主题中似乎没有<a>
保存图像的元素)
我用来测试的图像:
我试图看到这张图片的全高。