私はこの古いコードを持っています:
<html>
<head>
<body style="text-align:center;">
<style>
#wrapper{margin:0 auto; max-width:992px;}
</style>
<div id="wrapper">
<table border="1" width="100%" height="40px">
<tr>
<td>header</td>
</tr>
</table>
<table border="1" width="100%" height="50%">
<tr>
<td width="60%">Main Data Window</td>
<td width="40%">Right Side Buttons</td>
</tr>
</table>
<table border="1" width="100%" height="43%">
<tr>
<td>Bottom Buttons</td>
</tr>
</table>
</div>
</body>
</html>
現在、テーブルの高さは非推奨になっているため (ファイルに DOCTYPE html を入れると壊れます)、同じ結果を得る最新の方法は何でしょうか。
基本的に私はそれを同じにしたいので、すべてのモニターとデバイスの向きで同じサイズになります。
どうもありがとう。