调整图像的宽度和高度
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了调整图像的宽度和高度相关的知识,希望对你有一定的参考价值。
我有内容存储在mysql中,如下所示:
<table width="450" cellspacing="1" cellpadding="1" border="1">
<tbody>
<tr>
<td><img width="513" height="680" align="left" alt=" src="/userfiles/image/pic.jpg" /></td>
<td><img width="315" height="700" align="left" alt=" src="/userfiles/image/DSC_0389.JPG" /></td>
<td><img width="580" height="320" align="left" alt=" src="/userfiles/image/ktxh.jpg" /></td>
</tr>
</tbody>
</table>
当我从db,php加载并通过PHP在html中显示时,没有问题。
现在,我想要所有图像,以固定的宽度和高度显示为200 X 200 AND TABLE BORDER ='0'
<table width="200" cellspacing="1" cellpadding="1" border="0">
<tbody>
<tr>
<td><img width="200" height="200" align="left" alt=" src="/userfiles/image/pic.jpg" /></td>
<td><img width="200" height="200" align="left" alt=" src="/userfiles/image/DSC_0389.JPG" /></td>
<td><img width="200" height="200" align="left" alt=" src="/userfiles/image/ktxh.jpg" /></td>
</tr>
</tbody>
</table>
我该如何解决这个问题?
答案
替换为此代码和CSS
<style>
.cstm
width:200px;
height:200px
table
border:0
</style>
<table width="200" cellspacing="1" cellpadding="1" border="0">
<tbody>
<tr>
<td><img class="cstm" align="left" alt=" src="/userfiles/image/pic.jpg" /></td>
<td><img class="cstm" align="left" alt=" src="/userfiles/image/DSC_0389.JPG" /></td>
<td><img class="cstm" align="left" alt=" src="/userfiles/image/ktxh.jpg" /></td>
</tr>
</tbody>
</table>
另一答案
正如您所提到的,$ content是动态的,您可以尝试将样式添加到表中:
<style>
table td>img
width:200px;
height:200px
</style>
以上是关于调整图像的宽度和高度的主要内容,如果未能解决你的问题,请参考以下文章