Why doesn't javascript newlines work inside html?

后端 未结 13 2590
梦谈多话
梦谈多话 2020-12-06 12:08

So I have the following:


  
    
  
<         


        
13条回答
  •  醉梦人生
    2020-12-06 13:02

    I had:

    Hello\nworld

    I added the below css to div class and it's working now:

    div {
          white-space: pre-wrap;
      }
    

    I hope this solve your problem too.

提交回复
热议问题