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

Order summary component solution

Henry Asanteโ€ข 220

@Henry33y

Desktop design screenshot for the Order summary component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Community feedback

Hassia Issahโ€ข 50,670

@Hassiai

Posted

To make the background-image visible add "./" to the beginning of the url value url("./images/pattern-background-desktop.svg"); instead of url("images/pattern-background-desktop.svg");

There is no need to give the body a background-position, rather give it a background-size of contain.

To center the main on the page using grid, replace the height in the body with min-height: 100vh.

body{
min-height: 100vh;
display: grid;
place-items: center;
}

For a responsive content, replace the width in the main with max-width and increase its value for it to be equivalent to the design. max-width: 416px which is 26rem/em.

Hope am helpful.

Well done for completing this challenge. HAPPY CODING

Marked as helpful

1
Abdul Khaliq ๐Ÿš€โ€ข 72,660

@0xabdulkhaliq

Posted

Hello there ๐Ÿ‘‹. Congratulations on successfully completing the challenge! ๐ŸŽ‰

  • I have other recommendations regarding your code that I believe will be of great interest to you.

BODY MEASUREMENTS ๐Ÿ“:

  • Use min-height: 100vh for body instead of height: 100vh. Setting the height: 100vh may result in the component being cut off on smaller screens.
  • For example; if we set height: 100vh then the body will have 100vh height no matter what. Even if the content spans more than 100vh of viewport.
  • But if we set min-height: 100vh then the body will start at 100vh, if the content pushes the body beyond 100vh it will continue growing. However if you have content that takes less than 100vh it will still take 100vh in space.

.

I hope you find this helpful ๐Ÿ˜„ Above all, the solution you submitted is great !

Happy coding!

Marked as helpful

1

Henry Asanteโ€ข 220

@Henry33y

Posted

@0xAbdulKhalid Thanks a lot for your 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