在html中,可以利用标签的style属性,给包含文字的标签元素添加“style="text-indent:2em;"”代码即可设置文字首行缩进2字符。text-indent属性用于控制文本块中首行文本的缩进,而“2em”表示两个字符长度。 本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。 在HTML中,style 属性规定元素的行内样式(inline style)。style 属性将覆盖任何全局的样式设定,例如在 标签或在外部样式表中规定的样式。</p> <p>html想要设置首行缩进2字符,这可利用style 属性给html文本元素添加<code>text-indent:2em</code>样式即可</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><div style="text-indent:2em;"> 但教心似金钿坚,天上人间会相见。临别殷勤重寄词,词中有誓两心知。七月七日长生殿,夜半无人私语时。在天愿作比翼鸟,在地愿为连理枝。 </div></pre><div class="contentsignin">登录后复制</div></div><p>效果图:</p><p><img src="https://img.php.cn/upload/image/892/385/608/1631505926676228.png" title="1631505926676228.png" alt="1.png"/></p><p>text-indent 属性规定文本块中首行文本的缩进。而1em相当于当前的字体尺寸(font-size属性),2em相当于当前字体尺寸的2倍。</p><p>想要开头缩进1.5个字符,则可:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><div style="text-indent:1.5em;">但教心似金钿坚,天上人间会相见。临别殷勤重寄词,词中有誓两心知。七月七日长生殿,夜半无人私语时。在天愿作比翼鸟,在地愿为连理枝。</div></pre><div class="contentsignin">登录后复制</div></div><p><img src="https://img.php.cn/upload/image/539/948/823/1631506054924204.png" title="1631506054924204.png" alt="2.png"></p> <p>推荐教程:《<a href="http://www.php.cn/course/list/11.html" target="_blank" textvalue="html视频教程">html视频教程</a>》、《<a href="https://www.php.cn/course/list/12.html" target="_blank">CSS视频教程</a>》</p>