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

Abdushakur 140

@abdu-shakur

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

@VickyAzola

Posted

Hi! great work finishing this challenge 😊

Your solution looks awesome! just a few tips that may interest you to make the background look more close to the design. To the body add some background properties like: (The // are to explain better, just delete them on your css code)

body {
//sets the minimum height of the body to be 100% of the screen.
    min-height: 100vh;  

 //allows to center the content
    display: grid; 

//centers the content vertically and horizontally
    place-content: center;  

//the image and the color
    background: url("images/pattern-background-desktop.svg");
    background-color: hsl(225, 100%, 94%);

//Scales the image as large as possible within its container without cropping or stretching the image
    background-size: contain; 

//so the image doesn't repeat
    background-repeat: no-repeat; 
}

Here's more info on the background properties

Hope this helps! 🤗

Marked as helpful

1

Abdushakur 140

@abdu-shakur

Posted

@VickyAzola thanks, i really appreciate.

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