Design comparison
Solution retrospective
Centering the card vertically was difficult at first but after some research I was able to do it. Have in mind that I am a newbie haha!
I tried to use BEM for my CSS classes but I'm sure I did it wrong. Would you please give me some feedback on how to use BEM for my classes?
Thanks in advance, Edgar.
Community feedback
- @KTrick01Posted over 2 years ago
Hi Edgar! I have a little advice for you, one way of easily centering things in your page is using flexblox in the body of your html, like this:
body { display: flex; justify-content: center; align-items: center; }
I hope that you find it useful in your future challenges!
Marked as helpful1@protondkPosted over 2 years ago@KTrick01 Thank you Eduardo for taking time to reply! I surely will use this to center elements from now on.
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