我在格式化 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.