As I work on designing a coming soon page, my goal is to have the voter's hand extend all the way to the edge of the screen by cutting off parts of the sleeve. Can you provide some guidance on what modifications are needed in the css/html code for this?
CSS Code:
.container { position: relative; } .top-left-image { position: fixed; top: 0; left: 0; object-fit: cover; z-index: 9999; }
HTML Code:
<div class="container"> <img src="Voter.png" alt="Voter holding a Ballot" class="top-left-image"> </div>
Check out the Current Coming Soon Page
I've attempted to adjust the z-index and position properties but haven't had success yet.