Design comparison
Community feedback
- @krushnasinnarkarPosted 4 months ago
Hi @youkaa04,
Congratulations on successfully completing the challenge!
I have a suggestion regarding your code that I believe will be of great interest to you.
There is an issue with the width of your card that can be solved by replacing your
.item
class'swidth
withmax-width: 650px;
. Also, there is no need to addheight: 500px;
to the.item
class; you can remove that. With these changes, your width issue will be solved.Additionally, you have used
margin
to center the card, but you can also do it by adding the following styles to yourbody
element:display: flex; justify-content: center; align-items: center; height: 100vh;
I hope you find this helpful, and I would appreciate it greatly if you could mark my comment as helpful if it was.
Feel free to reach out if you have more questions or need further assistance.
Happy coding!
Marked as helpful0@youkaa04Posted 4 months agothank you so much man i appreciate it, your tips will be helpful of course@krushnasinnarkar
0
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