我想在选定的部分中显示下划线。
我的html代码是:
<ion-segment value="All">
<ion-segment-button value="All" class="mysegment">
<ion-label>All</ion-label>
</ion-segment-button>
<ion-segment-button value="Favorite" class="mysegment">
<ion-label>Favorite</ion-label>
</ion-segment-button>
</ion-segment>我的scss代码是:
.mysegment {
color: white;
}发布于 2020-09-29 12:43:11
它可以使用mode="md"在离子段中完成,如下所示:
<ion-segment value="All" mode="md"> https://stackoverflow.com/questions/64119852
复制相似问题