CSS text-align 属性
CSS text-align 属性指定元素文本的水平对齐方式
默认值 | left if direction is ltr, and right if direction is rtl |
---|---|
继承 | yes |
版本 | CSS1 |
JavaScript 语法 | object.style.textAlign="right" |
语法
text-align: left | right | center | justify | inherit
属性值
值 | 描述 |
---|---|
left | 把文本排列到左边。默认值:由浏览器决定 |
right | 把文本排列到右边 |
center | 把文本排列到中间 |
justify | 实现两端对齐文本效果 |
inherit | 规定应该从父元素继承 text-align 属性的值 |
浏览器支持
下表中的数字表示支持该属性的第一个浏览器版本号。
1.0 | 3.0 | 1.0 | 1.0 | 3.5 |
范例
h1, h2, 和 h3元素设置文本的对齐方式
h1 {text-align:center} h2 {text-align:left} h3 {text-align:right}
更多范例
-
演示了一个更高级的文本对齐的例子
相关文章
CSS 基础教程 CSS 文本