DIV中TABLE居的2种方式
<html>
<head>
<title>测试页面
</title>
</head>
<body>
<div width="500px" height="300px">
<div width="500px" height="80px">
</div>
<div width="500px" height="200px">
<center>
<table>
<tr>
<td>
列111
</td>
列222
<td>
</td>
</tr>
</table>
</center>
</div>
<div width="500px" height="100px" style="text-align:center">
<table border="1" cellpadding="3" cellspacing="0" style="width: 60%;margin:auto">
<tr><td>表格测试</td> </tr>
</table></div>
</div>
</body>
</html>