Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
using css and grid
What challenges did you encounter, and how did you overcome them?none
What specific areas of your project would you like help with?none
Community feedback
- Account deleted
Hello Coder🙂
your solution is great 🎉
But you used the wrong method to switch images and there are some better ways are available to handle the image switch problem
You can try <picture> tag to switch image
Picture tag :
<picture> <source media="(min-width: 597px)" srcset="./images/image-product-desktop.jpg "> <source media="(min-width: 0px)" srcset=" ./images/image-product-mobile.jpg"> <img src="./images/image-product-mobile.jpg" alt="Product_image"> </picture>
And I think you have a lot of doubt related to your solution that's why I recommend you to check out my solution✨ that will definitely going to help you 👀
I hope that will be helpful for you✌️
0
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