Responsive Using Flex

Solution retrospective
ALL FEEDBACK WELCOME! CHEERS!
Please log in to post a comment
Log in with GitHubCommunity feedback
- @hyrongennike
Hi @baskarancs15,
Nice job on you first attempt of the challenge
The card is slightly off center you can add the following to center the card in the middle of the page.
body { display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 100vh; } .card, .card-content { margin: 0; background: #fff; }
The image also seem distorted. you can add
object-fit: cover
to fix that. Hope this if helpful.
Join 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