如何在Angularjs中以正确的格式显示附加值?

时间:2016-09-13 05:33:24

标签: css angularjs

我使用textarea添加了以下问题。

What will be the output of the program?

     String x = new String("xyz");
     String y = "abc";
     x = x y;

 How many String objects have been created?

但是当我尝试在另一个页面中列出添加的问题时,我看到What will be the output of the program? String x = new String("xyz"); String y = "abc"; x = x y; How many String objects have been created?(问题在同一行)。

我从后端获得的回复是 "question: "What will be the output of the program?↵↵String x = new String("xyz");↵String y = "abc";↵x = x y;↵↵How many String objects have been created?"

在我的回复中,我收到了输入(↵)符号,但我需要帮助才能以正确的格式显示问题。

1 个答案:

答案 0 :(得分:0)

您可以使用white-space属性。 white-space属性有三个值可帮助您实现目标。他们是:

pre空白由浏览器保留。文本仅包含换行符。像HTML中的标记一样

pre-line空格的序列将折叠成一个空格。文本将在必要时包装,并在换行符

pre-wrap空白由浏览器保留。文本将在必要时包装,并在换行符

示例:

HTML

<p> this is my multilane text</p>

CSS

p{white-space: pre-wrap}

参考:http://www.w3schools.com/cssref/pr_text_white-space.asp