@RaayaneGomes97Submitted almost 4 years ago
Jenny
@jenny07007All comments
- @jenny07007Posted almost 4 years ago
Hi, I think you did a fantastic job! There're maybe lots of ways to solve the vertical-align problem, but in this case, you might just want to add couples lines of code to achieve your goal :)
You can also play around with these lines of code in your browser using the inspector first, a quick way to see how they actually change the layout. Happy coding.// in css body height: 100vh; display: flex; justify-content: center; align-items: center; // in .container class - remove `margin: 4% auto;`
0