Submitted 11 months ago
HTML, BEM, CSS custom properties&pseudo-classes, Flexbox, Mobile-first
@Szeri323
Design comparison
SolutionDesign
Solution retrospective
Hi guys, my questions for you: If you have any general advice for the whole project, such as: repository advice, hosting advice, etc., If you notice some inaccuracies in my work, if you have other things for me, please let me know.
Community feedback
- @MaximilianoDanielGarciaPosted 11 months ago
Hi Szeri, good job!
If you're wonderig how to center it, you can use either Flex Box or CSS Grid
- Flex Box:
body { display: flex; justify-content: center; align-items: center; min-height: 100vh; }
- CSS Grid:
body { display: grid; place-items: center; min-height: 100vh; }
Marked as helpful2@Szeri323Posted 11 months agoHi @MaximilianoDanielGarcia, thank you for your comment.
You are right, it would look better.
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