我的工作与离子框架,我需要有一个页脚的背景颜色为红色,并与文本在中心对齐。页脚需要有一个像按钮的行为;页脚应该像一个按钮,中心有文本“注册”:
我尝试这个代码:
离子HTML:
<ion-content>
Some content!
</ion-content>
<ion-footer-bar class="myColor">
<div class="buttons">
<button class="button">REGISTER</button>
</div>
</ion-footer-bar>
CSS:
.myColor{
color:red
}
.button{
color:white;
text-align:center;
}
但是,它不工作。我不知道;你们有些人有一些好建议:
谢谢!
2条答案
按热度按时间kognpnkq1#
你应该像这样把整个页脚设置成一个可点击的元素:
然后你可以使用简单的css:
在控制器中,您可以调用以下函数:
bvuwiixz2#
ion-footer-bar{ --background : blue; }