CSS

css每段开头空两个字符

CSS text-indent 属性

实例

将段落的第一行缩进 50 像素:

p{
  text-indent:50px;
}

将段落的第一行缩进2个字符:

<p style="text-indent:2em;">你的文章内容!</p>
相关推荐