Answers for "put gradient color over background image"

CSS
4

gradient over image css

#linear-gradient-over-image{
    background-image: linear-gradient(to bottom, black, white), 
      url('images/background.jpg');
    background-size: cover;
}
Posted by: Guest on May-27-2020
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 "put gradient color over background image"

Browse Popular Code Answers by Language