Design comparison
Solution retrospective
I'm proud of how fast I came up with the solution, it took me less than two hours to finish, and for me this is very fast. I would try making more and more detailed commits next time.
What challenges did you encounter, and how did you overcome them?It's been a while since I last practiced CSS and HTML, so remembering basic things was hard, but it was easy to remember consulting the documentation
What specific areas of your project would you like help with?I would love any tips and recommendations on how to make my code simpler and easier to read, and also how I can organize my CSS, if I could make anything different, like if my CSS is redundant or if there's an easier way.
Community feedback
- @LeviKuhauluaPosted 6 months ago
Heyo, something that saves me a lot of time and headaches because I tend to mistype stuff is to define a CSS Custom Property in the
:root
element of my style or in the class name. You can define a custom property in CSS by doing the following::root { --fw-large: 32px; } OR... .some-class-name { --clr-blue: hsl(178, 100%, 50%); }
Then you can reference it by using
var(name of custom property)
.The MDN Article goes more in-depth on using CSS Custom Properties.
Have a good one!
Marked as helpful0@julianesilvac75Posted 6 months ago@LeviKuhaulua that's very helpful! Thanks for the tip :)
0 - @halekeviPosted 6 months ago
You did amazing! We would love to see what you create next. Your code looks well-structured and organized.
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