gpt4 book ai didi

css - 在 Ionic 3 中将图标垂直对齐到文本

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

我正在尝试将 Ionic 图标放在文本的右侧并使它们垂直居中,但我无法做到这一点。我正在尝试使用 flex 布局对齐 avg-rating 中的内容,如下所示:

<ion-content padding>
<ion-card>
<img src="assets/imgs/restaurant.jpeg" />
<ion-card-content>
<div class="title">
<ion-card-title>
Title
</ion-card-title>
<div class="avg-rating">
<h2>4,5/10</h2>
<ion-icon name="star"></ion-icon>
</div>
</div>
</ion-card-content>
</ion-card>
</ion-content>

这是我的 SASS:

.avg-rating {
display: flex;
align-items: center;
h2 {
margin-bottom: 0;
}
}

正如您在这里看到的,这些元素没有对齐。我习惯于使用 CSS 和 Web 应用程序,这总是有效,但在这里似乎并没有像我预期的那样工作。知道我做错了什么吗?谢谢。

enter image description here

最佳答案

您是否在 ion-icon 上尝试过 vertical-align

类似于:

.avg-rating ion-icon {
vertical-align: middle;
}

关于css - 在 Ionic 3 中将图标垂直对齐到文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49079866/

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