Latest solutions
Latest comments
- @ryanthayes@Bagataa
Hello, congratulations on finishing the challenge, I reviewed your code and I fixed it by adding a height on icons now it's perfectly aligned. The first icon has an 88px height the other 2 icons are 80px height you can change the first item to 80px height and it will be perfectly aligned. I hope this helps you. HAPPY CODING
Marked as helpful - @YannickMukeng@Bagataa
Hey, you can easily center your card with Flex. In the body element, you should give height:100vh body { display: flex; justify-content: center; align-items: center; height:100vh } And you must delete the padding from the body you don't need it. Tip: U don't need flex-direction: row, By default, the flex items are placed in the row direction. HAPPY CODING
Marked as helpful