Responsive solution to: Product preview card component challenge
Design comparison
Solution retrospective
I am most proud of making my solution responsive by using relative units, which allow the content to scale proportionally with changes in the root element's font size.
What challenges did you encounter, and how did you overcome them?I encountered two problems while solving this challenge:
-
Figuring out how to use em and rem units to ensure that the content scales with changes in the root element's font size. This problem was resolved by watching Kevin Powell's video on this topic, as well as through trial and error.
-
Deciding on the best approach for using a media query to make the page responsive while keeping the code as concise as possible. While I am certain that there might be room for improvement, this represents the best solution I can achieve at the moment.
Any feedback on my approach to solving the two problems mentioned above would be greatly appreciated. Additionally, I welcome any other comments or critiques.
Community feedback
- @danielmrz-devPosted 4 months ago
Hey there! šš½āāļø
Congrats on finishing the challenge! ā
Your project looks awesome!
Here's a tip that might interest you:
š When you have different versions of the same image, consider using the
<picture>
tag.This will help ensure the correct image loads on the user's device, saving bandwidth and boosting performance.
Example:
<picture> <source media="(min-width: 768px)" srcset="{desktop image path here}"> <img src="{mobile image path here}" alt="{alternative text here}"> </picture>
Hope you find this useful!
Great job overall!
Marked as helpful0@josip-hPosted 4 months agoHi Daniel,
Thank you for your suggestion and clear explanation. I wasn't familiar with the
<picture>
element until you mentioned it. I have now implemented it in the solution. Thanks for making it better!Also, your comment's markup, structure, and approach are excellent. I'm sure I'll learn something from that too!
1@danielmrz-devPosted 4 months ago@josip-h I'm glad my comment was helpful! šā
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