私たちのアプリケーションには、フォーム フィールドの配置を制御するテーブルがあります (悪いことはわかっていますが、変更することはできません)。<td>
顧客は、フィールド ラベル (最初の) がフィールド値 (2 番目の ) とは異なるページにあるような方法で Internet Explorer が印刷プレビューに改ページを挿入する方法が気に入らないと報告しました<td
。
例として、次の印刷プレビューを実行し、サイズを大きくします (例: 200%)。
<html>
<head>
<title>Testing</title>
<style>
td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<tr>
<td>
First cell.
</td>
<td>
<textarea rows="30" cols="50">Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. Second cell. </textarea>
</td>
</tr>
</table>
</body>
</html>
「最初の細胞」。表示は 1 ページに表示され、テキストエリアは 2 ページに表示されます。スナップショットを参照してください。
2 つの<td>
要素が常に同じページに表示されるようにする方法はありますか?