2012-04-05 18 views
1

html:brなしでXULのテキストを新しい行に移動するにはどうすればよいですか? XULなどに改行文字がありますか?XULのbrまたは改行

答えて

3
<description> 
    Some 
    text 
    here 
</description> 

<description>要素は、改行、<html:p>同じを尊重することができます。 white-space CSS propertyを使用するだけです:

<description style="white-space: pre-wrap;"> 
    Some 
    text 
    here 
</description> 
関連する問題