我试图删除用户下拉时出现的 ion-refresher 元素下的边框。我已经尝试使用 !important 进行无边框无阴影和自定义 css,但似乎没有任何内容可以删除它,如何删除用户下拉时出现的 ionic 刷新器下的行

       <ion-refresher (ionRefresh)="doRefresh($event)"
          no-border no-shadow style="border:none !important; box-shadow: none !important">
            <ion-refresher-content no-border no-shadow style="border:none !important">
            </ion-refresher-content>
       </ion-refresher>

最佳答案

您需要删除边框顶部。将其添加到页面的 css 中:

.has-refresher>.scroll-content {
    border-top: 0;
}

关于ionic-framework - Ionic 2 去除 ionic 刷新器下的线,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51213067/

10-10 13:00