作者:邹飞邹飞邹飞 | 来源:互联网 | 2022-10-17 17:02
我正在尝试创建具有透明背景的模态,但是它不起作用
ion-content {
--background-color: rgba(255, 255, 255, 0.7);
}
.closeBtn {
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
}
Test.
Close
我希望看到一些透明性。
1> MD Khali..:
global.css
.modal-wrapper{
background: transparent !important;
}
page.scss
ion-content{
--background: transparent;
}