AngularJS Material 设计:md-tabs 中不同标签的不同颜色
AngularJS Material Design : Different colors for different tabs in md-tabs
有没有办法在md-tabs
中为不同的标签设置不同的背景颜色?
默认是没有颜色的,可以在tabs demo
中看到
我试过了<md-tabs background-color="green">
但是没用
AngularJS Material 设计 (md) 选项卡,md-tabs
背景颜色是透明的,并使用主容器的背景颜色。尝试为 md-tabs
添加 CSS class .
Added background to entire md-tabs
md-tabs {
background: red;
border: 1px solid #e1e1e1; }
By adding CSS childs to md-tab class, you can see different colors for different tabs.
.md-tab:first-child{background: green; }
.md-tab:nth-child(2){background: pink; }
.md-tab:nth-child(3){background: blue; }
在评估源代码后,我找到了一种实现标签标题动态内容格式的方法。为此,请编写如下代码
<md-tabs>
<md-tab>
<md-tab-label>
<span ng-class="......">
Title
</span>
</md-tab-label>
<md-tab-body>
content
</md-tab-body>
</md-tab>
</md-tabs>
有没有办法在md-tabs
中为不同的标签设置不同的背景颜色?
默认是没有颜色的,可以在tabs demo
我试过了<md-tabs background-color="green">
但是没用
AngularJS Material 设计 (md) 选项卡,md-tabs
背景颜色是透明的,并使用主容器的背景颜色。尝试为 md-tabs
添加 CSS class .
Added background to entire md-tabs
md-tabs {
background: red;
border: 1px solid #e1e1e1; }
By adding CSS childs to md-tab class, you can see different colors for different tabs.
.md-tab:first-child{background: green; }
.md-tab:nth-child(2){background: pink; }
.md-tab:nth-child(3){background: blue; }
在评估源代码后,我找到了一种实现标签标题动态内容格式的方法。为此,请编写如下代码
<md-tabs>
<md-tab>
<md-tab-label>
<span ng-class="......">
Title
</span>
</md-tab-label>
<md-tab-body>
content
</md-tab-body>
</md-tab>
</md-tabs>