gpt4 book ai didi

html - 如何在所有设备上将 ionic3 中的标题居中

转载 作者:行者123 更新时间:2023-11-28 01:11:18 26 4
gpt4 key购买 nike

当我添加一个导航栏时,它添加了一个后退箭头按钮和一个按钮到右侧,我的标题右对齐,并且没有响应。如何使其在所有设备(无论是 Android 还是 iPhone)上居中并响应。

.html

<ion-header>
<ion-navbar>
<ion-toolbar>
<ion-title>Page1</ion-title>
<ion-buttons end>
<button ion-button clear class="header-buttons" (click)="goToFollowersPage()">Get followers</button>
</ion-buttons>
</ion-toolbar>
</ion-navbar>
</ion-header>

.css

.toolbar-md,.toolbar-ios {
min-height: 40px;
padding: 0;
}

.toolbar-title-md,.toolbar-title-ios {
font-size: 16px;
}

.header-buttons {
color: #4A90E2;
font-weight: bold;
font-size: 14px;
font-style: normal;
line-height: 19px;
opacity: 1.0;
letter-spacing: normal;
text-transform: initial;
}

ion-title {
width: 275px;
margin-left: auto;
padding-left: 65px;
}
ion-buttons {
margin-right: 15px;
}

最佳答案

对我来说,只使用 ion-navbar 而不使用 ion-toolbar 也没有对齐标题。我通过更改我的 css 使用了一个 walkaround。

对于您的 CSS,请使用这两种样式:

ion-title {
left: 0;
top: 0;
padding: 0 90px 1px;
position: absolute;
width: 100%;
height: 100%;
-webkit-transform: translateZ(0);
transform: translateZ(0);
pointer-events: none;
}

.toolbar-title {
text-align: center;
font-size: 1.7rem;
font-weight: 600;
color: #000;
pointer-events: auto;
}

这将使您的标题始终居中对齐

关于html - 如何在所有设备上将 ionic3 中的标题居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52082719/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com