Answers for "gradient over image tag using css"

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
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 "gradient over image tag using css"

Browse Popular Code Answers by Language