JSFiddle - React, Tailwind, and code Playground
by Pritam Bohra
HTML
<div class="background">
</div>
<div class="div">
</div>
CSS
.background {
width: 400px;
height: 400px;
background-color: pink;
background-image: url("https://picsum.photos/g/200/300");
background-repeat: no-repeat;
background-position: top left;
background-attachment: fixed;
background-size: 50%;
}
.div {
width: 500px;
height: 1000px;
background-color: red;
margin-top: 50px;
}