Answers for "change transparancy img css"

1

transparent background css

div {
  width: 200px;
  height: 200px;
  display: block;
  position: relative;
}

div::after {
  content: "";
  background: url(image.jpg);
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;   
}
Posted by: Guest on June-04-2020
-2

change transparancy img css

img {
  opacity: 0.5;
}
Posted by: Guest on May-27-2020

Browse Popular Code Answers by Language