react force text content to wrap

  • Set attributes in the css file
white-space: pre-wrap;
然后文本使用“\n” 即可进行文本换行
  • In the render function of react's jsx file, use dangerouslySetInnerHTML in the tag to wrap the text by adding the br tag

Guess you like

Origin blog.csdn.net/weixin_43956521/article/details/110930402