私はposition: absolute
を使用してposition: relative
コンテナの中に包み込みます。あなたが使用することができます
table {width: 100%;}
td {width: 33%;}
.wrap {position: relative; height: 100px; z-index: 2;}
.wrap textarea {position: absolute; height: 95px; width: 95%; z-index: 2;}
.wrap textarea:focus {z-index: 99;}
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="wrap"><textarea name="" id="" cols="30" rows="10"></textarea></div>
</td>
<td>
Hello World
</td>
<td>
Hello World
</td>
</tr>
<tr>
<td>
<div class="wrap"><textarea name="" id="" cols="30" rows="10"></textarea></div>
</td>
<td>
Hello World
</td>
<td>
Hello World
</td>
</tr>
</tbody>
</table>
'ポジション:absolute'! –
Praveenはうまく働いて、私の質問に答えました。あなたの例では動作しませんが(スニペットを実行します)、それは私のウェブサイト上で動作します。 –