1

我在格式化 HTML 中的段落时遇到问题。我的目标是缩进每个段落的第一行,但是每个段落的第一行都被缩进,第一行是在第二个句子之前添加额外的空格或回车。在不添加额外空格的情况下格式化段落的最佳方法是什么?

我的内联 CSS 是以下代码。

<style type="text/css">
    p { text-indent: 12px; margin: 0%; margin-top: 0%; margin-bottom: 0% }
</style>

结果如下所示:

       The quick brown fox jumped over the lazy log.  The quick brown fox jumped 

over the lazy log.  The quick brown fox jumped over the lazy log.  The quick 
brown fox jumped over the lazy log.  The quick brown fox jumped over the lazy 
log.  The quick brown fox jumped over the lazy log.  The quick brown fox jumped 
over the lazy log.
4

1 回答 1

0

您提供的 css 样式没有任何问题:

在此处输入图像描述

试试看:https ://snippet.run/xd5b

于 2013-07-16T00:43:26.700 回答