我应该使用什么CSS来使用pixate更改所选UITabBarItem的背景颜色?
我试过这个,但似乎没有用。
tab-bar-item:已选择{
background-color:gray;
}
我做错了什么?
答案 0 :(得分:3)
出于某种原因,我不得不使用“标签栏选择”
我还必须将它的背景大小设置为合理的,以便它可以工作。我不知道这是不是这样,但它对我有用。
tab-bar {
background-color: red;
selected-color: white;
}
tab-bar-item {
color: green;
font-family: Arial;
font-size: 12px;
}
tab-bar-item:selected {
color: purple;
}
tab-bar selection {
background-size:64px 48px;
background-color: linear-gradient(red,yellow);
box-shadow: inset 0px 2px 2px rgba(0,0,0,.2);
}