
Solution retrospective
The fact that I'm getting better at finding solutions myself faster. I was told this is the most useful skill for a developer.
What challenges did you encounter, and how did you overcome them?I was trying to find out if the pseudo-class was supposed to be a hover or just active. So I did both.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @alaa-mekibes
Good job @RaissaNv
- Update Your README File
Start by using the provided README template included in the starter file. Customize it to enhance clarity and professionalism.
- Avoid Using px Unless Necessary
Use relative units like rem or em for sizing instead of px. This ensures better scalability and responsiveness.
- Use css variables to improved maintainability:
:root { --bg-color: hsl(210, 46%, 95%); /* Add your other colors here */ } body { background-color: var(--bg-color); /* Other properties */ }
Marked as helpful
Join 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