Can you merge a background image with an rgba color without resorting to an rgba gradient?
My current CSS3 style appears as follows:
html
{
background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
url("../icons/sombrero.jpg")no-repeat center center fixed;
}
However, I envision something like this:
html
{
background:rgba(0, 0, 0, 0.75),
url("../icons/sombrero.jpg")no-repeat center center fixed;
}
The rgba color should be on top of the image. I came across the gradient-"hack" from this source. I am looking for an alternative to the gradient technique, not the box-shadow trick.