我在td元素中有textarea作为描述字段,如下图所示。
当我垂直调整textarea的大小时,它工作得很好
但是...
当我将textarea的大小调整为原始高度时,它会影响其他TD,如第3张图所示。
我希望它能够防止发生。
注意:它只发生在Chrome中,Firefox可以解决此问题。
编辑:
cipher = CipherUtilities.GetCipher("AES/ECB/PKCS7");
cipher.Init(false, new KeyParameter(key));
答案 0 :(得分:1)
将height:100%
标记
height:auto
至img
<tr>
<td rowspan="6" style="width:200px;"> <image scr="#" style="width:100%; height:auto;" ></image> </td>
</tr>