如果文本包含“13”和“10”则显示换行符
Showing line breaks if text contains '13' and '10'
Webapi returns 自定义文本字符串,行包含 13
和 10
个字符。如果我在 html 中显示此自定义文本,我看不到换行符(如果我使用 <pre>
标记,则会显示换行符)。
在 html 或 css 中应该修改什么以显示换行符?我无法修改 webapi。
我正在使用敲除数据绑定将来自 webapi 的值插入 html.
<p data-bind="text: $data.CustomTxt"></p>
使用css属性"white-space: pre-line":
Sequences of whitespace will collapse into a single whitespace. Text will wrap when necessary, and on line breaks
Webapi returns 自定义文本字符串,行包含 13
和 10
个字符。如果我在 html 中显示此自定义文本,我看不到换行符(如果我使用 <pre>
标记,则会显示换行符)。
在 html 或 css 中应该修改什么以显示换行符?我无法修改 webapi。 我正在使用敲除数据绑定将来自 webapi 的值插入 html.
<p data-bind="text: $data.CustomTxt"></p>
使用css属性"white-space: pre-line":
Sequences of whitespace will collapse into a single whitespace. Text will wrap when necessary, and on line breaks