浏览器变小时 表格文字自动排版有什麼方法 可以令網頁內容 不會隨着瀏覽器大小移動而移位?
请教大家!谢谢!
<head>
<meta http-equiv="Content-Type" c />
<title>Untitled Document</title>
</head>
<body>
<div style="position:absolute; top:0px; left:0px; width: 413; height: 125;">
<table border="1" style="table-layout:fixed;">
<caption>Contact Information</caption>
<tr>
<td></td>
<th scope="col">Name</th>
<th scope="col">Phone#</th>
<th scope="col">Fax#</th>
<th scope="col">City</th>
</tr><tr>
<td>1.</td>
<th scope="row">Joel Garner</th>
<td>412-212-5421</td>
<td>412-212-5400</td>
<td>Pittsburgh</td>
</tr><tr>
<td>2.</td>
<th scope="row">Clive Lloyd</th>
<td>410-306-1420</td>
<td>410-306-5400</td>
<td>Baltimore</td>
</tr><tr>
<td>3.</td>
<th scope="row">Gordon Greenidge</th>
<td>281-564-6720</td>
<td>281-511-6600</td>
<td>Houston</td>
</tr>
</table>
</div>
</body>
</html>