Design comparison
Solution retrospective
Most proud of? That I actually managed to start and complete the project! Differently next time? Use proper REM or EM on my CSS if I mixed them up (still having trouble understanding it)
What challenges did you encounter, and how did you overcome them?Changing/downloading the fonts, using GitHub for the first time, making a Live Site URL!
I used YouTube and carefully read GitHub instructions, as well as following the "Complete guide to submitting solutions"!
What specific areas of your project would you like help with?Seeing if I used correctly the REM and EM on my CSS, any simpler ways to shorten my CSS code and make it simpler (if possible) and does it look like a junior working in the programming field made it? lol
Community feedback
- @kodan96Posted 6 months ago
hi there! ๐
If you don't modify the
font-size
in@media
queries then there's not much of a point usingrem
in term of responsiveness. But otherwise you used it correctly as far as I'm concerned.Instead of using absolute positioning and
transform
to center your content it's easier to center it using flexbox by applying these to thebody
:body { min-height: 100vh; display: flex; justify-content: center; align-items: center; }
Hope this helps ๐
Good luck and happy coding! ๐ช
Marked as helpful0
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