I encountered a strange issue where the images I added to a background disappeared.
.Background1{
position:relative;
top:0%;
left:0%;
height:100%;
width:100%;
content:url("/assets/backgroundlayer1.jpg")
}
.Background2{
position:absolute;
top:35%;
left:25%;
height:75%;
width:50%;
}
<div class="Background1" name="Background1" id="Background">
<img class="Background2" name="Background2" id="Background" src="/asset/Background2.png">
</div>
Edit: My goal is to make background2 fit on background1.