1

なしで XUL の新しい行にテキストを移動する方法はhtml:br? XUL などに改行文字はありますか?

<description>
    Some
    text
    here
</description>
4

1 に答える 1

3

<description>要素は、と同じように改行を尊重できます<html:p>。あなたは単にwhite-spaceCSSプロパティを使用する必要があります:

<description style="white-space: pre-wrap;">
    Some
    text
    here
</description>
于 2012-04-05T17:09:40.310 に答える