html段落开头空两格---css技巧text-indent

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

实例:

<div class="context"><p>第一段p><p> 第二段p>div>
.context p{
    text-align: justify; text-justify: inter-ideograph; text-indent: 2em;
}

其中text-align:justify; text-justify:inter-ideograph;设置文字两端对齐, text-indent:2em;设置文字首行缩进

取消首行缩进

<p style="text-indent:0;">p>

你可能感兴趣的:(html5,css运用)