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

  • @sahlairsha

    Submitted

    Hi, This is my second challenge. I'm so blissful that I have finished two projects in a week. Although I have faced a difficulty in creating the last table part. Are there any other tricks for making tables?

    @Digi-Omar

    Posted

    You can try using CSS grid

    .nutri-values{ display: grid; grid-template-columns: 100px 1fr 1fr; border-bottom: 1px solid #e4ded8; }

    .nutri-values .nutrients{ grid-column-start: 2; grid-column-end: 3; }

    My entire solution is at the repository https://github.com/Digi-Omar/frontend-mentor-recipe-page/tree/main

    Marked as helpful

    0
  • @taylor003

    Submitted

    I enjoyed working this recipe page out and still need some help. I did the small screen but I know it wasn't done in the right way, further clarity, and guidance withh be appriaciated. Thank you...

    @Digi-Omar

    Posted

    Hi You can try putting your image into a container of its own. Sort of like a header container. Then put your content into another container. This is so you can make your image occupy 100% of the viewport width without being impacted by the padding you give to the rest of the content.

    Marked as helpful

    0