本文介绍了AngularJS材质设计:md-tabs中不同选项卡的不同颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以为md-tabs中的不同选项卡设置不同的背景颜色?默认值为无颜色,如标签演示

Is there a way to set different background colors for different tabs in md-tabs ?The default is no color as can be seen in tabs demo

我尝试了<md-tabs background-color="green">,但是它不起作用

I tried <md-tabs background-color="green"> but it's not working

推荐答案

AngularJS材质设计(md)选项卡,md-tabs背景色是透明的,并使用主容器的背景色.尝试为md-tabs添加CSS类.

AngularJS Material design (md) tabs, md-tabs background color is transparent and uses the background color of your main container. Try to add CSS class for md-tabs .

md-tabs {
    background: red;
    border: 1px solid #e1e1e1; }
 .md-tab:first-child{background: green; } 
 .md-tab:nth-child(2){background: pink; } 
 .md-tab:nth-child(3){background: blue; } 

提琴 https://jsfiddle.net/cxf3otz9/

codepen http://codepen.io/anon/pen/zGNEyw

这篇关于AngularJS材质设计:md-tabs中不同选项卡的不同颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 10:21