Design comparison
Solution retrospective
I'm proud of being able to set "@font-face" in CSS
What challenges did you encounter, and how did you overcome them?The main challenge was how to use the variable font provided in the project. I overcame it by reading about it on MDN and ChatGPT.
What specific areas of your project would you like help with?N.A
Community feedback
- @VictorKevzPosted 7 months ago
Great job!!!!👏. Maybe you can also address the overflow you have vertically?
Marked as helpful0@bra-BenPosted 7 months ago@VictorKevz thanks for the feedback. Can you explain to me how I can go about it?
Links to resources on the subject matter are welcome. TIA!
0@VictorKevzPosted 7 months ago@bra-Ben What usually works for me is setting the margin and padding to zero to the body element then box-sizing to border-box.
body{ margin: 0; padding: 0; box-sizing: border-box; }
I am not sure if this is quite the permanent solution but I struggled with the overflow so I found that to be helpful. Additionally providing fixed sizes to elements often leads to overflow.
You can watch this video here https://youtu.be/x4u1yp3Msao?si=b-feAuAicAEutS9j
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