本文介绍了AngularJS Material Design:md-tabs 中不同标签的不同颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法为 md-tabs
中的不同标签设置不同的背景颜色?默认为无颜色,如
代码笔http://codepen.io/anon/pen/zGNEyw
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
I tried <md-tabs background-color="green">
but it's not working
解决方案
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; }
fiddlehttps://jsfiddle.net/cxf3otz9/
codepenhttp://codepen.io/anon/pen/zGNEyw
这篇关于AngularJS Material Design:md-tabs 中不同标签的不同颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!