0

我已经自定义了 Popup css 使其处于固定位置并在屏幕中心水平对齐。它在 Android 设备中正确显示,但在 iOS 中显示。下面是我拥有的 css 以及 iOS 和 Android 的屏幕截图。如何解决 iOS 中的问题?

.credit-deny-popup .popup {
    position: fixed;
    top: 60px;
    margin-left:auto;
    margin-right:auto;
    width: 250px;
    height: 250px;
}
.credit-deny-popup .popup-title {
    font-weight: bold;
    font-size: larger;
    color: #FFFFFF;
}
.credit-deny-popup .popup-head {
    background-color: #387EF5;
}

iOS 截图

iOS 截图

安卓截图

安卓截图

先感谢您!

4

1 回答 1

0

正如@DaDanny 在https://forum.ionicframework.com/t/ionic-popup-position/111102/4中所建议的那样,解决了这个问题。我还必须在 CSS 中添加左右。

.credit-deny-popup .popup {
    position: fixed;
    top: 60px;
    margin-left:auto;
    margin-right:auto;
    left: 0;
    right: 0;
    width: 250px;
    height: 250px;
}
于 2017-11-06T13:40:59.600 回答