我正在使用Ionic-tabs的应用程序中工作,当我在Android设备上运行时,标签会覆盖内容。
通常修复在内容div上设置has-tabs-top,但是离子has-tabs.pane被覆盖has-tabs-top css
.has-tabs.pane, .bar-footer.has-tabs.pane {
bottom: 49px;
height: auto;
}
.has-tabs-top {
top: 93px;
}
<ion-content padding="true" class="has-tabs-top">
我正在寻找一种方法来修复它而不更改css类
答案 0 :(得分:2)
您需要在app模块的配置方法中添加它
$ionicConfigProvider.tabs.position("bottom"); //Places them at the bottom for all OS
$ionicConfigProvider.tabs.style("standard"); //Makes them all look the same across all OS