freeCodeCamp/guide/chinese/css/text-indent/index.md

584 B
Raw Blame History

title localeTitle
Text Indent 文字缩进

文字缩进

此CSS属性在文本块中创建第一行的缩进。

价值观:

可以使用% px em或测量单位(如cmin指定text-indent属性。

例如:

  • text-indent: 20%;
  • text-indent: 15px;
  • text-indent: 5em;
  • text-indent: 2in;

text-indent属性也可以使用inherit值从其父元素inherit

例如:

  • text-indent: inherit;

更多信息: