Design comparison
Community feedback
- @correlucasPosted about 2 years ago
πΎHello again Samuel, congratulations for your new solution!
You did a good work putting everything together in this challenge, the image isn't scaling properly you need to fix that to aboid it distort with
max-width: 100%
anddisplay: block
and another improvement you can do to the image that needs to change between mobile and desktop is to use<picture>
instead of keeping<img>
wrapped in a div. You can manage both images inside the<picture>
tag and use the html to code to set when the images should change setting the devicemax-width
depending of the device (phone / tablet / computer)A good guide to use this tag markup
picture
:https://www.w3schools.com/tags/tag_picture.asp
π I hope this helps you and happy coding!
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