Design comparison
Solution retrospective
I am proud that I was able to use custom font in the project
What challenges did you encounter, and how did you overcome them?@font-face { font-family: 'Figtree'; src: url("./assets/fonts/Figtree-VariableFont_wght.ttf") format('truetype'); }
I encountered some difficulty while writing the CSS code, particularly in accurately positioning the box vertically for the mobile view. I referred to a few CSS tutorial websites for syntax and values, and after some trial and error, I was able to get it right.
What specific areas of your project would you like help with?CSS techniques
Community feedback
- @Grimm-NPosted 12 days ago
Great job! ๐ Your hard work is really paying off. Keep it up! ๐
For easier collaboration, consider making your repository public so others can view and share feedback on your code. Itโs a great way to learn together! ๐๐ฉโ๐ป๐จโ๐ป
A few tips:
-
Centering with Flexbox: To center an element in a container with Flexbox, use:
container { display: flex; justify-content: center; /* Centers horizontally */ align-items: center; /* Centers vertically */ }
-
Use Relative Units Over Pixels: Using
em
,rem
,%
,vw
, andvh
instead ofpx
makes your design more flexible, adapting better to different screen sizes and settings. -
Follow the Mockupโs Layout and Sizes: Sticking closely to the mockup helps tackle real design challenges and build strong skills. Practice makes perfect! ๐ช
Fantastic progressโkeep going! ๐
1 -
- @RenzorrPosted 13 days ago
Good job, but here are some changes i would made:
Good Journey
0
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