设置不同 <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 |
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 属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!