线路断裂在离子项目中不起作用



我陷入了这个简单的问题。找不到任何解决方案。

以下不起作用:

<div text-wrap ion-item no-lines>
            "No result found. <br/> Please enter your search criteria."
</div>

我在做什么错?

我尝试了 n或br tag

我也有类似的问题,不得不将DIV放置在离子项目中:

<ion-item>
  <div>
    first line
    <br/>
    second line
  </div>
</ion-item>

您也可以尝试以下方法:

white-space: pre-line !important;

相关内容

  • 没有找到相关文章

最新更新