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

Result Summary Page using HTML and CSS

@BANKOLEDO

Desktop design screenshot for the Results 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 was able to make a quite responsive result. i would like to fully implement the challenge design

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

I was not able to style the tips of the reaction, memory container

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

I would need feedbacks and the process to style the tips of a container

Community feedback

@SecretariatV

Posted

Hi, @BANKOLEDO. Nice to meet you.

Your working is good. But in your project have got some implement part.

First, in your left part have got incorrect background.

This would be correct if it were done as follows: .card-1 { width: 100%; height: 50%; background: linear-gradient(0deg, var(--violet-blue-circle), var(--light-royal-blue-background)); display: flex; flex-direction: column; align-items: center; /* Center content horizontally / border-radius: 0 0 2.3rem 2.3rem; / Rounded bottom corners */ }

And you add style justify-content: center.

Or use 'display:grid; place-items: center;' instead of 'display:flex; align-items: center'.

This code.

.card-1 {
    width: 50%;
    height: 100%;
    border-radius: 1.3rem 0 0 1.3rem;
    display: grid;
    place-items: center;
}

I wish your success.

Marked as helpful

3

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