Design comparison
Solution retrospective
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
- @SecretariatVPosted 4 months ago
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 helpful3
Please log in to post a comment
Log in with GitHubJoin 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