中心对齐离子标题

问题描述:

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> 
对齐
+0

标题是因为你的返回按钮的偏移。修复它也会解决它。 – imvpn22

只需添加文本中心属性为您的离子-navbar标签或离子标题标签,这样的:

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

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