Tarjeta-equilibrium

Please log in to post a comment
Log in with GitHubCommunity feedback
- @astraldev
You could have centered the Card..
I just checked your code
.container { margin: 2rem; display: flex; justify-content: center; height: 37rem; }
It turns out that, you could have added the
align-items
property to center the card on the vertical axisIt could have been
.container { margin: 2rem; display: flex; justify-content: center; align-items: center; height: 37rem; }
Marked as 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