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

@PauloRicardoSM

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


To place the card in the middle of the screen I used the value "display grid" and "place-items: center" in the body, but I notice that on small screens (mobile), the card is a little further to the right. Can you give me any suggestions on how to leave it in the middle, regardless of the screen size? (Sorry if I didn't explain it very well).

Community feedback

@MaximilianoDanielGarcia

Posted

Hi Paulo Ricardo, good job!

I think the error you are referring to is because you have a margin on body tag, just add margin: 0; and that's it. Also, for improve your body's background try this:

body {
    background-image: url(../images/pattern-background-desktop.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    width: 100%;
    background-color: hsl(225, 100%, 94%);
}

Marked as helpful

0

@PauloRicardoSM

Posted

@MaximilianoDanielGarcia

Thank you very much for the help and the background suggestion, it helped a lot!

0

@Pancratzia

Posted

Hi, Paulo! I've reviewed your code and found that your problem is that you're using width: 100%; in your body tag. If you delete that line, your code works fine! Also, try using this snippet for box-sizing. It'll help you in your future projects with box model sizing, which can be a nightmare sometimes!

Marked as helpful

0

@PauloRicardoSM

Posted

@Pancratzia

Thank you so much for the feedback on my code! Also, thanks for the suggestion to use box-sizing and snippet, it will really help me a lot in the future!

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