hi there! ๐
You can center your content with Flexbox if you apply these to the body
tag:
body {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
Hope this was helpful ๐
Good luck and happy coding! ๐
Marked as helpful
@grmbyrn
Posted
@kodan96 I always forgot this combination so that's really useful. Thanks a lot!