css保留格式文本换行

也可以用富文本保留文本格式  恰逢场景需要且能使代码简洁故用css实现

white-space:xxx;

white-space: pre-line;

连续的空白符会被合并。在遇到换行符或者
元素,或者需要为了填充「行框盒子(line boxes)」时会换行。

 white-space: pre;

连续的空白符会被保留。在遇到换行符或者
元素时才会换行。 

white-space: pre-wrap;

连续的空白符会被保留。在遇到换行符或者
元素,或者需要为了填充「行框盒子(line boxes)」时才会换行 

css保留格式文本换行_第1张图片 

交付备注
{{ state.info.remark || "-" }}
展开
收起

 

 .text-pre {
        white-space: pre-wrap;
    }

 

你可能感兴趣的:(css)