我的wordpress博客文章缩略图中有问题。高度是拉伸的,我是css高度:auto;但仍然无法达到预期的效果。
.post-image img {
height: auto;
}
<?php if(has_post_thumbnail()) { //check for feature image ?>
<div class="post-image">
<?php the_post_thumbnail(); ?>
</div><!---end post image-->
<?php } ?>
答案 0 :(得分:0)
使用<?php the_post_thumbnail(array(200x200)); ?>
使用数组添加高度和宽度以应用于图像。
仍未解决,则CSS来自任何父结构。