Design comparison
SolutionDesign
Community feedback
- @nilmusPosted about 1 month ago
I see that to switch from the mobile-image to the desktop-image, you used
display: none
inside your media query.This works, but note there is a better solution by using the
figure
element and giving it animg
and asource
, like so:<figure <source media="(min-width: 1024px)" srcset="images/image-product-desktop.jpg" /> <img class="product-image" src="images/image-product-mobile.jpg" alt="perfume image" /> />
Marked as helpful0
Please log in to post a comment
Log in with GitHubJoin 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