text-align属性用于设置元素内文本内容的水平对齐方式
属性值(固定值):
▶ left:左对齐(默认值)
▶ right:右对齐
▶ center:居中对齐
h1 { text-align: left; } h2 { text-align: center; } h3 { text-align: right; }
<h1>左对齐标题</h1> <h2>居中标题</h2> <h3>右对齐标题</h3>