我应该使用什么CSS来改变所选UITabBarItem使用pixate的背景颜色?
我已经试过了,但似乎不起作用。
tab-bar-item:选择{
背景颜色:灰色;
}
我做错了什么?
由于某些原因,我不得不使用"tab-bar selection"
我还必须将它的背景大小设置为合理的,以便它可以工作。我不知道这是不是正确的方法,但它适合我。
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);
}