gpt4 book ai didi

ionic-framework - 如何在 Ionic 4 的 中居中

转载 作者:行者123 更新时间:2023-12-04 15:41:54 35 4
gpt4 key购买 nike

如何在<ion-label>中发短信?在 <ion-list-header> 中水平居中Ionic 4 中的元素?

我找到了 text-center 属性实用程序,如下所示并记录在 ionic doc 中,但它不起作用。

我还尝试添加 class="ion-center-text" .

但是当 <ion-label> 时,这两个测试都不起作用在<ion-list-header>里面.但是如果 <ion-label>包裹在 <ion-item> 中!

    <ion-list-header text-center>
<ion-label>Text not centered</ion-label>
</ion-list-header>

或:

    <ion-list-header>
<ion-label text-center>Text still not centered</ion-label>
</ion-list-header>

    <ion-list-header>
<ion-label class="ion-text-center">Text still not centered</ion-label>
</ion-list-header>

    <ion-list-header  class="ion-text-center">
<ion-label>Text still not centered</ion-label>
</ion-list-header>

我只需要一个简短而干净的解决方案来使我的 <ion-label> 居中包裹在 <ion-list-header> 中.

有人有符合 ionic 4“最佳实践”的解决方案吗?


在@annaya 的帮助下找到的解决方案是更改 <ion-list-header> 的显示模式在display:block或者最好保留 display:flex并添加 justify-content:center .像那样:

    <ion-list-header>
<ion-label>Text centered</ion-label>
</ion-list-header>

与:

    list-item-header{
justify-content: center;
}

感谢回复、评论和英文更正;)

最佳答案

ion-list-header{
display:block;
text-align: center;
}
<ion-list-header>
<ion-label>Text not centered</ion-label>
</ion-list-header>

关于ionic-framework - 如何在 Ionic 4 的 <ion-list-header> 中居中 <ion-label>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57553235/

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