Design comparison
SolutionDesign
Solution retrospective
Rate my work. Plz let me know what should i have to improve.
Community feedback
- @beowulf1958Posted about 1 year ago
Congratulations on completing the project. Your HTML is very clean, the CSS very readable. The desktop version looks great. However, I noticed that the image does not show in mobile view. There is an easy fix for this:
<picture class="image"> <source srcset="images/image-product-mobile.jpg" media="(max-width: 600px)" /> <img src="images/image-product-desktop.jpg" alt="Gabrielle Essence Perfume" /> </picture>
If you remove the first forward slash in the srcset in your code, the mobile works fine. Try it out!
Hope this helps.
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