わかりました、私の問題はこれです、私は1つのマスターテーブルを持っていて<td>
、テーブルにある はすべて完璧に整列し、ヘッダーがbeiggerなどを失った場合はnicleyを拡張しました<th>
...
このテーブルを 2 つのテーブルに分割する必要がありました。これは、上部を下部セクションとは別にソートする必要があるためです。<td>
問題は、一番上のテーブルと同じ幅になるように、一番下のテーブルの の幅を手動で設定する必要があることです。それらを自動的に設定する方法はありますか?
<table align="center" class="data_table" style="border-bottom-style: none; margin-bottom: 0px;">
<tr>
<th>
</th>
</tr>
</table>
<table align="center" class="data_table" style="border-top-style: none; margin-top: 0px;">
<tr>
<th colspan="9 title="Source of Repair (SOR) Remarks">SOR Remarks</th>
</tr>
<tr>
<td width="845px" colspan="9">
<textarea name="mcRemark" rows="7" cols="100" scrolling="auto">${mcRemark}</textarea>
</td>
</tr>
これ
<td width="845px" colspan="9">
は一番上のテーブルのサイズであり、変更される可能性があります....それが私の問題です