我也是新手~分享一下。
![[哈哈]](/static/emoticons/u54c8u54c8.png)
<head>
...
<style type="text/css">
h1{text-align:center; }
.father{
width:500px;
background:#ccc;
display:table;
margin:0 auto;
}
.center{
text-align:center;
}
</style>
</head>
<body>
<h1>元素居中</h1>
<div class="father">
<p>父元素div居中</p>
</div>
<br/>
<div class="father">
<p class="center">子元素p在父元素div居中</p>
</div>
</body>