中心对齐离子标题

时间:2017-11-18 05:22:11

标签: css ionic-framework

enter image description here

在下图中,离子标题绘画未在中心正确对齐,如何在准确的中心对齐

home.html的

<ion-header>

<ion-navbar>
<ion-title> <p align="center" style="color:white;">{{service.name}}</p>
</ion-title>
</ion-navbar>

</ion-header>

3 个答案:

答案 0 :(得分:18)

已弃用离子CSS属性。

替换:

'<ion-title text-center>'

使用:

'<ion-title class="ion-text-center">'

答案 1 :(得分:8)

只需将 文本中心 属性添加到 ion-navbar 标记或 ion-title 标签,如下所示:

<ion-navbar text-center>
  <ion-title>
    Some text...
  </ion-title>
</ion-navbar>

<ion-navbar>
  <ion-title text-center>
    Some text...
  </ion-title>
</ion-navbar>

答案 2 :(得分:1)

<ion-title text-center>
    <p class="centered-p">Title</p>
</ion-title>

.md .centered-p {
  text-align: center;
  margin-left: -15%
}

它并不完美,但在android和iOS上都可以正常工作