我在不拉伸动态生成并加载到固定容器中的情况下按比例调整全尺寸图像的大小时遇到问题。我正在使用 Wordpress + WP Ecommerce 来动态调整完整的 singke
例如,使用以下 html 代码:
<div class="image" style="display: table; width:360px; height: 430px; #position: relative; overflow: hidden; text-align:center;">
<table width="100%" class='nocolour' style="display: table-cell;margin-left: auto;
margin-right: auto; text-align: center; vertical-align: middle; height:auto;">
<tr style=" width:100%;">
<td valign="middle" style="vertical-align:middle; width:100%; text-align: center;">
<div class="imageplaceholder" style="max-width:100%; width:100%; height: 430px; overflow: hidden;margin: auto; text-align:center; "><a style="width: 100%; text-align: center; " href="<?php echo wpsc_the_product_permalink(); ?>">
<img style="height: auto; max-width:100%;margin-left: auto; margin-right: auto; display:block; overflow:hidden;" class="product_image" id="product_image_<?php echo wpsc_the_product_id(); ?>" alt="<?php echo wpsc_the_product_title(); ?>" title="<?php echo wpsc_the_product_title(); ?>" src="<?php echo wpsc_the_product_thumbnail(get_option('product_image_width'),get_option('product_image_height'),'','single'); ?>"/>
</a></div>
</td>
</tr>
</table>
</div>
和CSS:
.wrapper .page-container .content .rightcontent .main-product-image img{
width: 360px; height:430px; display:block; overflow:hidden;
}
有什么想法可以纠正这个问题吗?
非常感谢任何回复。