目录

CSS text-indent 属性


示例

使用不同的值缩进第一行文本:

div.a {
  text-indent: 50px;
}

div.b {
  text-indent: -2em;
}

div.c {
  text-indent: 30%;
}
亲自试一试 »

定义和用法

这个text-indent属性指定文本块中第一行的缩进。

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

展示演示❯

默认值: 0
遗传: 是的
可动画: 是的。阅读可动画的尝试一下
版本: CSS1
JavaScript 语法: 对象.style.textIndent="50px"尝试一下

浏览器支持

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

Property
text-indent 1.0 3.0 1.0 1.0 3.5

CSS 语法

text-indent: length|initial|inherit;

属性值

Value Description Demo
length Defines a fixed indentation in px, pt, cm, em, etc. Default value is 0. Read about length units Demo ❯
% Defines the indentation in % of the width of the parent element Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS教程:CSS 文本间距

HTML DOM 参考:文本缩进属性