Design comparison
Solution retrospective
.
What challenges did you encounter, and how did you overcome them?Trying to think to in em instead of pixels.
What specific areas of your project would you like help with?I've read about em
and rem
units, but i'm still not familiar when i should use em
and when i should use rem
.
Community feedback
- @kodan96Posted 6 months ago
hi there 👋
You should avoid hard-coded values (pixels) most of the time. When you use these values you give up responsibility (or you make it harder for yourself at least)..
Typically you will increase the
font-size
property with@media
queries. If you have hard-coded values all over your CSS, you need to modify every element'sfont-size
. On the other hand, if you userem
-s all you need to do is changing thefont-size
in your CSS:root
selector and all your elements will have a new size based on that value.I usually use
em
forpadding
andmargin
for text-based elements, since their margin usually based on theirfont-size
, and again, when you change thefont-size
in:root
these values will scale up as well without you touching them, making your job easier and your page maintainable.Hope this helps! 🙏
Good luck and happy coding!
Marked as helpful1@h-mihailPosted 6 months ago@kodan96 Thank you! I will keep this in mind when working at my next solution
1
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