1
Summary:
I need to put two background 1 on top of the other one and the top one should be semi-transferred so that the background appears below and without affecting the other elements of the page background-screen2
background-screen1
.background-screen2{
background-image: url("https://images.pexels.com/photos/949587/pexels-photo-949587.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500");
background-size: auto;
opacity:0.6
}
.background-screen1
{
background-image: url("https://definicao.net/wp-content/uploads/2018/10/significado-de-background-810x506.jpeg");
background-size: auto;
}
<div class="background-screen1 background-screen2">
<p>Hello</p>
<p>Hello</p>
<p>Hello</p>
<p>Hello</p>
<p>Hello</p>
</div>
You’ll probably have to use two divs, one on top of the other, styling the background of each.
– Benilson