CSS中的text-indent属性是用来设置文本缩进的。它可以使用绝对值或相对值来设置文本缩进的大小。
使用绝对值设置文本缩进
使用绝对值设置文本缩进,可以使用以下语法:
text-indent: 10px;
上面的代码表示将文本缩进10像素。
使用相对值设置文本缩进
使用相对值设置文本缩进,可以使用以下语法:
text-indent: 2em;
上面的代码表示将文本缩进2个字符(em)。
通用语法
text-indent的通用语法如下:
- text-indent: length;
- text-indent: percentage;
- text-indent: initial;
- text-indent: inherit;
其中,length表示绝对值,percentage表示相对值,initial表示恢复到默认值,inherit表示从父元素继承属性值。