我无法在css中更改标签页眉的颜色。有人能帮我吗?这是我的代码。
<md-tab-group>
<md-tab *ngFor="let tab of tabs">
<template md-tab-label> {{ tab.title }} </template>
<template md-tab-content>
<md-content>
<md-card>
<md-card-title> {{ tab.cardTitle }} </md-card-title>
<md-card-content>
{{ tab.content }}
</md-card-content>
</md-card>
</md-content>
</template>
</md-tab>
</md-tab-group>