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.
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.
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
Not responsive, suggestions are welcomed!