离子模态底部间距

时间:2015-05-10 11:41:33

标签: css ionic-framework

我无法设置模态与屏幕下限之间的底部间距!在我的CSS中,我将“离子模态视图”元素的CSS高度和宽度设置为某个百分比并相应地给出了左,右,上,下的值,一切都按预期工作,我的模态居中,但我可以把它从底部拆下来。

任何帮助?

1 个答案:

答案 0 :(得分:7)

最后,我设法通过将ion-modal-viewdiv包装在min-height: 0;类上应用modal指令来设法使其工作,这使我的习惯成为可能保证金有效。

<div class="adic-modal">
    <ion-modal-view class="adic-popup">
        <!--some content-->
    </ion-modal-view>
</div>

这是CSS:

.adic-modal .modal {
    min-height: 0 !important;
}

.adic-popup {
    width: 90%;
    height: 60%;
    top: 20%;
    bottom: 20%;
    right: 5%;
    left: 5%;
    background-color: #ffffff;
}

我需要知道我做的是否是正确的方法。