我有一个警报,其中有一些文本和一个离子子,我想更改其颜色并调整其大小和位置(中心),并创建了一个css类,试图应用它,但它甚至不起作用HTML似乎可以正常工作,我使用<b>
标签就可以了。
我的代码:
async presentAlertError(data) {
const alert = await this.alertController.create({
header: 'Confirmation',
message: '<ion-icon name="close" class="custom-icon-notfound" > </ion-icon>' + "Registration " + data.statusText,
buttons: [
{
text: 'Cancel',
role: 'cancel',
cssClass: 'secondary',
handler: (aux) => {
console.log('Confirm Cancel: aux');
}
}, {
text: 'Scan Next',
handler: () => {
this.scanCode();
console.log('Confirm ');
}
}
]
});
await alert.present()
我应该以其他方式做到这一点吗?