Design comparison
Solution retrospective
I'm new to HTML and CSS so creating a card for now is achievement for me
What challenges did you encounter, and how did you overcome them?As I don't use figma, it's hard to find the correct spacing
What specific areas of your project would you like help with?As I'm new to HTML & CSS any feedback is welcomed. Thanks in advance for your time!
Community feedback
- @Grimm-NPosted 4 days ago
Awesome work! 🎉 Everything looks well-organized and you’re clearly putting a lot of effort into this. Keep it up! 👏
Just a few friendly reminders:
-
Feel Free to Edit the Original HTML: Don’t hesitate to make changes to the initial HTML file, including removing any example styles that are there for demonstration. You have full freedom to reshape the file to fit your own design ideas!
-
Centering an Element within a Container: To center an element inside its container, Flexbox makes this super easy! Here’s a quick example:
.container { display: flex; justify-content: center; /* Centers horizontally */ align-items: center; /* Centers vertically */ }
With this approach, your element will be perfectly centered within the container. 🎯
Fantastic progress—you’re doing great! 🚀
Marked as helpful0 -
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