Mobile first product component using flexbox

Solution retrospective
I want to know the best practices for structuring my HTML. Also, I need a guide on using the CSS grid.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @correlucas
👾Hello again Demilade, Congratulations on completing this challenge!
Nice solution again! I'll give you 3 tips to improve this challenge in specific:
1.You did a good work putting everything together in this challenge, something you can do to improve the image that needs to change between mobile and desktop is to use
<picture>
instead of<img>
wrapped in a div. Look that for SEO and search engine reasons isn’t a better practice import this product image with CSS since this will make harder to the image be found. 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 / computer) Here’s a guide about how to usepicture
:https://www.w3schools.com/tags/tag_picture.asp
2.Use
display: none
in the first or the second image to avoid the component displaying both version in mobile.3.Its not so good that you used
overflow: hidden
for the whole content, in this case this property is making the content get cropped when the component gets tiny. Instead of usingoverflow
to make the rounded borders useborder-radius
for each card.✌️ I hope this helps you and happy coding!
Join 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