css hover opacity background image code example
Example 1: background image opacity css
body::before{
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
background-image: url(image.jpg);
background-size: cover;
background-position: center;
opacity: 0.25;
}
Example 2: css background image opacity
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;
}