Cannot add alpha background color to div section

Try this:

// Black with 75% opacity
#main-outlet {
    background-color: rgba(0, 0, 0, 0.75);
}

It’s looking for a decimal value rather than the percent.

4 Likes