I'm attempting to apply a transparent linear gradient to tint an image. However, the developer tools are detecting my property as invalid. Interestingly, when I remove the gradient, the image displays correctly. Could there be something crucial I am overlooking?
body {
background: linear-gradient(rgba(255,0,0,0.45), rgba(255,0,0,0.45)),
url('Fabric-4.png');
font-family: 'Oswald', sans-serif;
font-size: large;
}