0
我想顯示警報但在那裏我無法添加離子選擇,因此我創建了一個網格,並且需要在網頁的中心顯示網格,並且應禁用背景。顯示類似於警報的網格
<ion-grid class="showmodal" *ngIf="showNews" style=" background:white; width:50%; height:60%">
<ion-row>
</ion-row>
</ion-grid>
我想可能的CSS,我能夠獲得電網,但它不會居中
.showmodal{
position: fixed;
top: 0;
height: 100%;
width: 100%;
background: rgba(23, 22, 22, 0.8);
z-index: 10;
left: 0px;
}
此網格應該始終即使屏幕尺寸不同的中心。