Design comparison
Solution retrospective
I am most proud of the fact i successfully completed this challenge
What challenges did you encounter, and how did you overcome them?I think my major challenge has been on responsiveness
What specific areas of your project would you like help with?please all the areas you'd find out in the codes that needs improvement, i'd definitely improve
Community feedback
- @reteovPosted 6 months ago
It looks like the page handles transitions well between mobile and desktop viewing. The image placement and resizing is responsive, and gets the job done well.
The text, however, needs some work.
One thing that you should avoid is the use of
px
measurements. You can never tell what a person's screen resolution will be, so you always want to use relative units, so that the browser can decide what the exact sizes should be.As such, you might want to try converting your
px
measurements toem
measurements. This allows the display to be adjustable based on the size of the screen.Marked as helpful0@iwedibahPosted 6 months ago@reteov thank you very much, tho i am having the challenge of converting pixels to em or rem but i will improve
0@reteovPosted 6 months ago@iwedibah It takes some getting used to. The key is that
1em
is the same size as the font... If you set a font size to16px
, then1em
=16px
. However, if the user needs a larger font, then1em
will translate to that size instead.Another thing is, if you're adjusting sections or the like, using percentages can also help, as long as you remember that the percentage will always compare to its hosting container.
I hope this helps!
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