月色溶溶夜 花阴寂寂春:怎样设置文字居中

来源:百度文库 编辑:查人人中国名人网 时间:2024/05/04 14:40:36
用什么HTML标记来实现文本居中?

<style type="text/css">
.text{text-align:center;
color:#333;
line-height:150%;
font-size:12px;
}
</style>
<div>
<h3>这里是标题</h3>
<p class="text">这里是段落文本,写这里就可以居中.</p>
</div>

<center>

</center>