有没有办法使HTML正确处理\n换行符?或者我必须用<br/>代替它们?
< div class = " text " > 美国广播公司 def 全球健康行动计划 < / div >
有没有办法使HTML正确处理\n换行符?或者我必须用<br/>代替它们?
< div class = " text " > 美国广播公司 def 全球健康行动计划 < / div >
当前回答
简单而线性:
<p> my phrase is this..<br>
the other line is this<br>
the end is this other phrase..
</p>
其他回答
您可以使用<pre>标记
< div class = " text " > < >之前 美国广播公司 def 全球健康行动计划 < / >之前 美国广播公司 def 全球健康行动计划 < / div >
你可以使用<pre>标签:
<div class=“text”> <pre> 美国广播公司 定义 吉 </pre> </div>
你可以使用CSS属性
white-space: pre-line
简单而线性:
<p> my phrase is this..<br>
the other line is this<br>
the end is this other phrase..
</p>
您可以使用以下任何CSS,
white-space: pre-line;
or
white-space: pre-wrap;
or
white-space: break-spaces;
更多信息请阅读:https://developer.mozilla.org/en-US/docs/Web/CSS/white-space