Recipe Main Page using HTML & css flexbox

Solution retrospective
Would please help review this submission and provide feedback.
1). I’m having issues with @media query 2). Having difficulties adding the borders under nutrition section.
Any help or feedback is appreciated.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @Joel12r
In your CSS, the media query is missing the and keyword before specifying the condition. Here's the corrected media query:
css Copy code @media screen and (max-width: 375px) { /* CSS rules for screens with a maximum width of 375px */ } or you can simple not add the key word screen , and it applies to all devices.
and also you dont need to add quotes font-family: 'Young serif', sans-serif; you can simply write it like this font-family: Young serif, sans-serif;
And for the table, I used a bootstrap class and just used the css to remove the border for the last row
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