如何根据角度1中的标签更改特定md-tab的背景颜色。
我已尝试.md-tab:first-child {background: green; }
根据ID工作,我必须根据标签给出制表符的背景颜色,并且它的ID不是常数。
更新
码
<md-tab id="tab1" label="Followup" ui-sref="app.ccc-patientDetails.followup">
<div ui-view="followup"></div>
</md-tab>
<md-tab id="tab2" label="Symptoms" ui-sref="app.ccc-patientDetails.symptoms">
<div ui-view="symptoms"></div>
</md-tab>
<md-tab id="tab3" label="Survey" ui-sref="app.ccc-patientDetails.survey" ng-if="ctrl.model.showSurvey">
<div class="tabcolor" ui-view="survey"></div>
</md-tab>
css
.md-tab:first-child {background: green; }