Design comparison
SolutionDesign
Community feedback
- @correlucasPosted about 2 years ago
πΎHello Sithum Gimhara, congratulations for your new solution!
Your solution is really good done, also the design elements. The only thing you really need to improve is the image responsivity, there's an issue that the image is not scaling with its proporpotions. Here's my tip to fix that:
Add
display: block
andmax-width: 100%
to theimg
selector to make the image fully responsive. Andobject-fit: cover
to make the image crop inside the column:img { display: block; object-fit: cover; max-width: 100%; }
π 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