段落中的断线

时间:2018-05-06 18:57:23

标签: html css html5 css3

我有一些文字块,我把它放在<p>标签之间。我的问题是线路断线严重(这个词在中间切断)。检查screenhost:

Screen of bad breaking the word promoted

我想在新行上提到这个词(提升)。我的代码是:

  <p>Share your server on social platforms to promote it.</p>

这有什么问题?

2 个答案:

答案 0 :(得分:1)

这是一个HTML / CSS问题,与PHP无关。您可以使用word-break: break-word

如果上述解决方案不适用于您的情况,则某些代码段将有助于更好地调试它。

答案 1 :(得分:0)

在段落中添加CSS类会破坏您想要的单词。只需添加一个类,或者创建一个async onLogin(user: User){ try { const result = this.afAuth.auth.signInWithEmailAndPassword(user.email, user.password); if (result){ this.navCtrl.setRoot(ProfileSetupPage); } }catch (e){ console.error(e); } }

的内联CSS样式

&#13;
&#13;
overflow-wrap: break-word;
&#13;
p {
  overflow-wrap: break-word;
}
&#13;
&#13;
&#13;