Equilibrium Card using CSS y flexbox

Solution retrospective
It was a challenge to imagine how to place the hover of the image.
I'm just not sure my solution is the best idea.
<div class="image">
<div class="eye-image"></div>
</div>
How to stack images and make one of them appear whenever you want?
Please log in to post a comment
Log in with GitHubCommunity feedback
- @jetskeeter1
you can have image container position as relative. The image container act as a container for the images and have two images position as absolute where both left and top is 0px or none at all because it is contained inside the div element and that eye-image sits at the bottom.
if one or the other image is on top and you want the other image to stand at the top, then you need to add z-index and set to 1.
the img width is set to 100% so that the entire image is contained in a container because the image itself is big.
I downloaded your file and tested it and it worked really well.
Here is the code which I just added a few lines of codes:
HTML:
<div class="image">
</div><img src="images/image-equilibrium.jpg" alt="image"> <div class="eye-image"></div>
CSS:
.image{
position: relative; width: 285px; height: 285px; border-radius: 8px; overflow: hidden;
}
.image img{
position: absolute; width: 100%;
}
.eye-image{
position: absolute; opacity: 0; background-color: var(--Cyan); background-image: url(./images/icon-view.svg); background-repeat: no-repeat; background-position: center; width: 100%; height: 100%;
}
You did an amazing job, tho.
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord