gpt4 book ai didi

css - 在表格上自定义 CSS Material 选项卡不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 06:58:59 25 4
gpt4 key购买 nike

在我的 Angular 5 应用程序中,我使用的是 Material API。

我有一个包含 2 个标签的表格:

<mat-tab-group>
<mat-tab>
<mat-table>
<!-- some stuff -->
</mat-table>
</mat-tab>
<mat-table>
<!-- some stuff -->
</mat-table>
</mat-tab>
</mat-tab-group>

我尝试自定义 <mat-tab> 的 css组件,但它不起作用,我一个一个地尝试了所有这些:

.mat-tab-label-active {
color: rgb(255, 255, 255) !important;
background-color: red !important;
}

.mat-tab-nav-bar {
color: rgb(255, 255, 255) !important;
background-color: red !important;
}

.mat-tab-group {
color: rgb(255, 255, 255) !important;
background-color: rgba(19, 23, 63, 0.993) !important;
}

只有.mat-tab-group工作中。我只想自定义选项卡单元格而不是整个选项卡组。有什么想法吗?

最佳答案

按照我的意见:使用 mat 选项卡的 ng-template 属性来自定义它们。 Stackblitz

<mat-tab-group>
<mat-tab label="First">
<ng-template mat-tab-label>
<span class="customized-label">
This is a customized label
</span>
</ng-template>
</mat-tab>
<mat-tab label="Second"> Content 2 </mat-tab>
<mat-tab label="Third"> Content 3 </mat-tab>
</mat-tab-group>
.customized-label {
color: red;
font-weight: 700;
}

关于css - 在表格上自定义 CSS Material 选项卡不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52218038/

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