I have searched for solutions, but they all seem to apply only when someone is scrolling. I am in need of a solution where the background image remains static while minimizing the browser window, causing it to be clipped.
Full Screen https://i.sstatic.net/5IlGL.png
Minimized Screen https://i.sstatic.net/TRkd1.jpg
When I minimize the window, I want the background image to not adjust with the browser size. For example, when minimized, only the letters 'va' from 'vampire' should be visible.
Ex:
Full Screen (All Continents Showing) https://i.sstatic.net/0h45u.png
Minimized Screen (Only Some Continents Showing) https://i.sstatic.net/izBuJ.jpg
.testing{
background-image: url('http://via.placeholder.com/1280x720.png?text=vampire');
background-repeat: no-repeat;
background-position: 100% ;
background-attachment: fixed;
height: 800px;
}
<div class="container-fluid testing"></div>
Edit: Thank you for the responses so far, but none have met my specific needs (5/17/21 4:00pm PST)