Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有 2 个完整的连续段落,我应该如何设置它们的样式,以便它们之间只有一个换行符(所以没有空行)?
例如
<p>First paragraph</p> <p>Second paragraph</p>
应该呈现为
First paragraph Second paragraph
我正在使用 XSLT 生成这个 HTML。
删除顶部和底部边距:
p{ margin-top:0; margin-bottom:0 }
通常<p>,标签将具有非零垂直边距,这会产生“额外”换行符的外观。如果您不希望它们之间没有“额外”空间,您可以将段落边距设置为零。
<p>
<p style="margin: 0;">First paragraph</p> <p style="margin: 0;">Second paragraph</p>