在影响其他TR边际的表格中调整textarea的大小

时间:2015-07-22 05:57:55

标签: html css

我在td元素中有textarea作为描述字段,如下图所示。 enter image description here

当我垂直调整textarea的大小时,它工作得很好enter image description here

但是...

enter image description here

当我将textarea的大小调整为原始高度时,它会影响其他TD,如第3张图所示。

我希望它能够防止发生。

注意:它只发生在Chrome中,Firefox可以解决此问题。

编辑:

cipher = CipherUtilities.GetCipher("AES/ECB/PKCS7"); 
cipher.Init(false, new KeyParameter(key));

http://jsfiddle.net/kvKZu/42/

1 个答案:

答案 0 :(得分:1)

height:100%标记

更改为height:autoimg
<tr>
<td rowspan="6" style="width:200px;"> <image scr="#" style="width:100%; height:auto;" ></image> </td>
</tr>

小提琴:http://jsfiddle.net/kvKZu/48/