语法格式: text-align:(文本位置) 位置 说明 left 左对齐 right 右对齐 center 居中对齐 justify 两端对齐 接下我们来分别看看这四种对齐方式的设置方法 文本左对齐的设置方法: <div style="text-align:center;">
<p>这是居中对齐的文本</p>
</div> <div style="margin: 0 auto;"> <p>这是居中对齐的文本</p></div> <div style="display: flex; justify-content: center; align-items: center;">
<p>这是居中对齐的文本</p>
</div> |