Answers for "syharpening image with gradient"

4

background with image and gradient

body {
  background: #eb01a5;
  background-image: url("IMAGE_URL"); /* fallback */
  background-image: url("IMAGE_URL"), linear-gradient(#eb01a5, #d13531); /* W3C */
}
Posted by: Guest on September-08-2020
0

put gradient color over background image

background-image: linear-gradient(#24366588, #24366588),
    url("../images/profs.jpg");
Posted by: Guest on March-03-2022

Code answers related to "syharpening image with gradient"

Browse Popular Code Answers by Language