目录

style textIndent 属性

示例

将 <div> 元素的第一行缩进 50 像素:

document.getElementById("myDiv").style.textIndent = "50px";
亲自试一试 »

描述

textIndent 属性设置或返回第一行文本的缩进。

笔记:允许负值。如果值为负数,第一行将向左缩进。


浏览器支持

Property
textIndent Yes Yes Yes Yes Yes

语法

返回 textIndent 属性:

object.style.textIndent

设置文本缩进属性:

object.style.textIndent = "length|%|initial|inherit"

属性值

Value Description
length Defines the indentation in length units. Default value is 0
% Defines the indentation in % of the width of the parent element
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 0
返回值: 一个字符串,表示元素中第一行文本的缩进
CSS版本 CSS1

更多示例

示例

返回 <div> 元素的文本缩进:

alert(document.getElementById("myDiv").style.textIndent);
亲自试一试 »

相关页面

CSS教程:CSS 文本

CSS 参考:文本缩进属性