我想让我的标题背景颜色透明。我的HTML如下:
account.page.html
<ion-header>
<ion-toolbar>
<ion-buttons slot="start">
<ion-back-button defaultHref="home"></ion-back-button>
</ion-buttons>
<ion-title>Account</ion-title>
</ion-toolbar>
</ion-header>
account.page.scss
ion-header {
--ion-toolbar-background-color: rgba(0, 0, 0, 0);
}
这使得背景颜色为白色,而不是透明。我还尝试background: transparent
通过 Chrome Inspector 对每个元素进行设置。但我只是得到white
。
任何帮助如何实现这一目标?