CSS text-align 属性

h1, h2, 和 h3元素设置文本的对齐方式:

h1 {text-align:center}
h2 {text-align:left}
h3 {text-align:right}

浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号。

属性chromeedgefirefoxsafariopera
text-align1.03.01.01.03.5

text-align属性指定元素文本的水平对齐方式。

默认值:如果 direction 属性是 ltr,则默认值为 left;如果 direction 属性是 rtl,则默认值为 right。
继承:yes
版本:CSS1
JavaScript 语法:object.style.textAlign="right"

属性值

描述
left把文本排列到左边。默认值:由浏览器决定。
right把文本排列到右边。
center把文本排列到中间。
justify实现两端对齐文本效果。
inherit规定应该从父元素继承 text-align 属性的值。

相关阅读