HTML中的制表符空间

Sum*_*ppi 5 html javascript extjs

我想在我的字符串中使用制表符空间.我提供使用新行的代码.但我不知道如何在字符串中使用制表空间.谁可以帮我这个事 !?

"Warning ! Sorry Cash Pay is less than this  <br/> month\'s installment. Please pay the  <br/> right amount."
Run Code Online (Sandbox Code Playgroud)

Shi*_*dim 14

&#09;是ASCII中的TAB字符.但根据html规范,所有空格字符都将被剥离为单个字符.还有其他空白字符.像&thinsp;,&emsp;并且&ensp;你可以试试他们.

更新

它似乎&emsp;给出了标签大小的间距.请参阅以下内容

  • a&emsp;b呈现为b
  • a&ensp;b呈现为b
  • a&thinsp;b呈现为b
  • a&nbsp;b呈现为b
  • a&#09;b呈现为b