css:div居中

<html>
<head>
<style>
#top{
 width:100%;
 background-color:red;
}
#top table{
 margin:0 auto;
}
</style>
</head>
<body>
<div id="top">
<table>
<tr><td>姓名:</td><td>Hello</td></tr>
</table>
</div>
</body>
</html>

你可能感兴趣的:(css:div居中)