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つの完全な連続した段落がある場合、それらの間に改行が1つだけになるように(つまり、空白行がないように)、どのようにスタイルを設定する必要がありますか?
例えば
<p>First paragraph</p> <p>Second paragraph</p>
次のようにレンダリングする必要があります
First paragraph Second paragraph
このHTMLをXSLTで生成しています。
上下の余白を削除します。
p{ margin-top:0; margin-bottom:0 }
通常<p>、タグにはゼロ以外の垂直マージンがあり、「余分な」改行のように見えます。それらの間に「余分な」スペースが必要ない場合は、段落の余白をゼロに設定できます。
<p>
<p style="margin: 0;">First paragraph</p> <p style="margin: 0;">Second paragraph</p>