Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • Harold• 60

    @harolddatus

    Submitted

    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.

    Stoic• 150

    @Joel12r

    Posted

    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

    0
  • Stoic• 150

    @Joel12r

    Posted

    • You can try using the bootstrap grip for better responsiveness. The way I see it in my head should be easier than suing media queries
    0