Answers for "css background image darken"

5

darken image css

.container img {
  filter: brightness(50%);
}
Posted by: Guest on May-25-2020
4

css darken background image

/* Answer to: "css darken background image" */

/*
  You can use the CSS3 Linear Gradient property along with your
  background-image like the code shown below.

  Here's a link to the CSS4 Linear Gradient property:
  http://www.w3schools.com/css/css3_gradients.asp
*/

#landing-wrapper {
  display: table;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('landingpagepic.jpg');
  background-position: center top;
  height: 350px;
}
Posted by: Guest on April-21-2020
0

darken backgorund image css

#landing-wrapper {
    display:table;
    width:100%;
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('landingpagepic.jpg');
    background-position:center top;
    height:350px;
}
Posted by: Guest on June-23-2021

Browse Popular Code Answers by Language