Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
product-preview-card
What challenges did you encounter, and how did you overcome them?product-preview-card
What specific areas of your project would you like help with?product-preview-card
Community feedback
- @jakegodsallPosted 8 months ago
Hi 👋
Great work with this project! It looks really great.
One point is that you have applied a fixed-value
width: 344px
on thecard-container
element. This means that when the viewport width is smaller than this the container will overflow and you won't be able to see it all without scrolling.A solution to this problem would be to apply a percentage-based
width
along with a fixed-valuemax-width
for larger viewports.For example:
.card-container { width: 90%; max-width: 350px; }
Hope this helps! 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