如何插入没有br标签的换行符

时间:2015-11-19 03:12:52

标签: html css

如何在没有<br>标记的单个段落中插入换行符?见下文:

enter image description here

4 个答案:

答案 0 :(得分:0)

您只需使用HTML在<pre>代码</pre>内输入即可。

在CSS中,您可以使用white-space:prewhite-space:pre-wrap

在编程中,您使用换行符\n

  

JS Bin示例: http://jsbin.com/simeri/edit?html,output

<p style='white-space:pre-wrap;text-align:center;font:bold 130% sans-serif'>
    Google Fonts. Hundreds of free, open-source fonts optimized for the web...
    Search or browse hundreds of font families, then add the ones you like to your ..
</p>

答案 1 :(得分:0)

你可以使用css word-wrap属性,如下所示:

String encrypt (String input) {
    String result;
    for (int i = input.length() - 1
            ; i >= 0
            ; --i) {
        result += input[i];
        if (i > 0) {
            append "diff" number of random character to result
        }
    }
    return result;
}

或动态使用\ n进入代码。

答案 2 :(得分:0)

<!DOCTYPE html><html><body>
<p style=' white-space: pre-line;text-align:center;font:bold 100% sans-serif'>
Google Fonts. Hundreds of free, open-source fonts optimized for the web...
  Search or browse hundreds of font families, then add the ones you like to your ..
</p>
</body></html>

答案 3 :(得分:0)

你可以使用&amp; nbsp ..?

    <p>&nbsp;</p>

这适用于Canvas LMS ......