<style>
.center{
text-align: center;
}
.left{
text-align: left;
}
.right{
text-align: right;
}
</style>
<div class="center">
<p>居中</p>
</div>
<div class="right">
<p>右对齐</p>
</div>
<div class="left">
<p>左对齐</p>
</div>
text-align: center;
就是这个属性
center 居中
left 左对齐
right 右对齐