Design comparison
SolutionDesign
Community feedback
- @adkenneyPosted almost 2 years ago
Hi there! Nice job on completing the challenge!
I have some suggestions that may help.
- using the
<picture>
element can help deal with an image that changes depending on screen size such as the divider in this challenge. You can read more about it here
For example:
<picture> <source media="(min-width: 48em)" srcset="/images/desktop.jpg"></source> <img src="/images/mobile.jpg"alt=""></img> </picture>
The only other thing I would mention is the font sizes in your card.
Hope I could help, and happy coding!
Marked as helpful0 - using the
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