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
Desktop design screenshot for the Recipe page coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


What are you most proud of, and what would you do differently next time?

The final result. This was my first project!

What challenges did you encounter, and how did you overcome them?

The most challenging thing was changing the color of the bullets in the lists.

What specific areas of your project would you like help with?

I need more practice to turn this page responsive.

Community feedback

P
beowulf1958 1,170

@beowulf1958

Posted

Congratulations on completing your first challenge! How exciting. It looks amazing on my desktop. I, too, had a challenge with the color of the bullets on the lists and your solution is...unique, shall we say? What I discovered was the ::marker pseudo-element. There is an excellent article here.

That said, when I tried to view your page on my iphone, it didn't look right. 😢

I was able to fix the problem by simply wrapping the img in a div and tweaking it a bit:

      img {
        display: block;
        width: 100%;
        border-radius: 10px;
      }

It worked. 😁 Then I made a small adjustment for smaller screen sizes using a media query:

      @media screen and (max-width: 480px) {
        .container {
          padding: 25px;
        }
      }

Look forward to your next project. 😎 Keep on coding

Marked as helpful

1

@CatRod

Posted

@beowulf1958

Oh, thank you very much for your feedback.

Actually, if I had used the ::marker pseudo-element it would have been much simpler. I'm always learning 🤓

I hadn't dealt with the responsive part yet, but thank you very much for the help! 🙏

0

Please log in to post a comment

Log in with GitHub
Discord logo

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