Pinterest图像高度

时间:2012-10-19 04:08:58

标签: php html css image pinterest

<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一样。

1 个答案:

答案 0 :(得分:1)

基本上,您需要从CSS将高度设置为AUTO,而不是使用HTML4标记宽度属性。使用内联样式(除非出于演示目的,IMO从来都不是一个好主意。),编辑您的代码如下所示:

<img src="blah.png" style="width:100px; height:auto;" />

祝你的项目好运! :)