Html页面置于浏览器中央主要就靠css样式*{margin:0 auto},让整个页面居中。下面是案例,
<html><head>
<meta http-equiv="Content-Type" content="text/html charset=utf-8" />
<title>无标题文档</title>
</head>
<style type="text/css">
*{margin:0 auto}
#Layer1{border:1px solid #ff0000width:300pxheight:400px}
#layer2{width:200pxheight:100pxborder:1px solid #ffff00}
</style>
<body>
<div id="Layer1" >
<table border="1" cellpadding="0" cellspacing="0" width="200" height="50">
<tr>
<td></td>
</tr>
</table>
<div id="layer2"></div>
</div>
</body>
</html>
网页效果如下:
为了能够方便区分效果,所有表格和层都用了边框颜色来区分
起决定性作用的代码如下图