<div class="pin_image">
<a href="<?php the_permalink(); ?>"><img width="191" height="auto" class="<?php echo $img_class; ?>"
src="<?php echo PricerrTheme_get_first_post_image(get_the_ID(),102,72); ?>" /></a>
</div>
如何根据图片的宽高比动态生成高度?宽度为191px。就像pinterest一样。
答案 0 :(得分:1)
基本上,您需要从CSS将高度设置为AUTO,而不是使用HTML4标记宽度属性。使用内联样式(除非出于演示目的,IMO从来都不是一个好主意。),编辑您的代码如下所示:
<img src="blah.png" style="width:100px; height:auto;" />
祝你的项目好运! :)