selim
selim

Reputation: 93

Ionic 4 transparent ion-content

I have an Ionic 4 app and I want a transparent content.

This does not work and always the content white. I have added this to the css as well:

ion-content{
  --ion-background-color: transparent;
}

enter image description here

Upvotes: 2

Views: 5811

Answers (1)

Ira Watt
Ira Watt

Reputation: 2135

ionic contents background is set with the --background scss variable https://ionicframework.com/docs/api/content

ion-content { --background: transparent;}

Upvotes: 10

Related Questions