目录

style textAlign 属性

示例

元素中的文本居中对齐:

document.getElementById("demo").style.textAlign = "center";
亲自试一试 »

描述

textAlign 属性设置或返回块级元素中文本的水平对齐方式。


浏览器支持

Property
textAlign Yes Yes Yes Yes Yes

语法

返回 textAlign 属性:

object.style.textAlign

设置文本对齐属性:

object.style.textAlign = "left|right|center|justify|initial|inherit"

属性值

Value Description
left Aligns the text to the left. This is default
right Aligns the text to the right
center Centers the text
justify The text is justified
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 左边
返回值: 一个字符串,表示元素内文本的水平对齐方式
CSS版本 CSS1

更多示例

示例

返回元素的文本对齐方式:

alert(document.getElementById("demo").style.textAlign);
亲自试一试 »

相关页面

CSS教程:CSS 文本

CSS 参考:文本对齐属性