目录

CSS text-align 属性


示例

设置不同 <div> 元素的文本对齐方式:

div.a {
  text-align: center;
}

div.b {
  text-align: left;
}

div.c {
  text-align: right;
}

div.c {
  text-align: justify;
}
亲自试一试 »

下面有更多 "亲自试一试" 示例。


定义和用法

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

展示演示❯

默认值: 如果方向为 ltr,则向左;如果方向为 rtl,则向右
遗传: 是的
可动画: 不。阅读可动画的
版本: CSS1
JavaScript 语法: 对象.style.textAlign="right"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
text-align 1.0 3.0 1.0 1.0 3.5


CSS 语法

text-align: left|right|center|justify|initial|inherit;

属性值

Value Description Demo
left Aligns the text to the left Demo ❯
right Aligns the text to the right Demo ❯
center Centers the text Demo ❯
justify Stretches the lines so that each line has equal width (like in newspapers and magazines) Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

更多示例

示例

另一个文本对齐示例:

h1 {
    text-align: center;
}

p.date {
    text-align: right;
}

p.main {
    text-align: justify;
}
亲自试一试 »

相关页面

CSS教程:CSS 文本对齐

HTML DOM 参考:textAlign 属性