Design comparison
SolutionDesign
Community feedback
- @Ayako-YokoePosted 2 months ago
This is great. You can center the card using either of these methods:
Using Flexbox in the body: body { display: flex; justify-content: center; align-items: center; /* other styles */ }
Or, apply positioning styles directly to .card: .card { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); /* other styles */ }
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