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

Submitted

OrderSummary

ElianaRestrepo99โ€ข 190

@ElianaRestrepo99

Desktop design screenshot for the Order summary component 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?

I feel satisfied to be able to carry out the activity without any inconvenience. Next time, keep in mind more about the widths and lengths and have more pixels assigned for the activity.

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

The challenge was to organize the length and width, I overcame them by organizing the pixels for desktop and mobile, putting more detail into the edges and radius.

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

I would like to receive guidance on pading, display.

Community feedback

P
Koda๐Ÿ‘นโ€ข 3,810

@kodan96

Posted

hi there! ๐Ÿ‘‹๐Ÿ‘‹

Instead of setting max-width on main just wrap your content inside a div (like you did with the hero section):

<main>
    <div class="container">
          <!-----All your content goes here---->
    </div>
</main>

and give that div (in this case the container div)a max-width

your <a> elements are taking up all the horizontal space, because you applied display: block; on them. Modify it to display: inline-block and you will be able to set margins to them, but they will still take up only the space they need, respecting the padding.

Hope this was helpful ๐Ÿ™

Good luck and happy coding! ๐Ÿ’ช

1

ElianaRestrepo99โ€ข 190

@ElianaRestrepo99

Posted

@kodan96 Greetings, thank you very much for your advice to improve my code, they are very useful for my learning.

1

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