Override ion-content's background color

532 Views Asked by At

We set ion-content's background color in app.scss or wherever. How can I override it? When I put this into the page's scss:

#page-content {
    background-color: purple;
}

Nothing happens. (Of course I added the id to the tag: <ion-content padding id="page-content">)

4

There are 4 best solutions below

0
On

This is how I changed the background:

.scroll-content {
    background-color: white;
}
0
On

You should use color in RGB code.

background-color: #000000;
0
On

Try it with add !important

#page-content {
    background-color: purple!important;
}
0
On

In your Global scss or local scss mention this

ion-content{ --background:white }