
Design comparison
Solution retrospective
Most of proud of the sleekness of the page and the hover properties
What challenges did you encounter, and how did you overcome them?I had some issues with the padding around my buttons and properly selecting elements to ensure proper styling. I found in this case having the CSS in the same file as the HTML made it easier to see what elements and properties belonged to what.
What specific areas of your project would you like help with?I definitely would like to improve my CSS grid skills.
Community feedback
- @4-WalkerPosted 12 days ago
Great work with the design and hover properties! :D
If you want to use flexbox to center your container on the vertical axis you can add the following to your code:
body { display: flex; align-items: center; justify-content: center; min-height: 100vh; }
Also, for accessibility and general user experience reasons, make sure you look out for colors that are super similar if they are overlapping on the design. For example, when you hover over your links the light green color is very similar to the white font color you have chosen. An easy way to fix this is simply also change the font color on hover -
.button:hover { background-color: hsl(75, 94%, 57%); color: black; }
Good luck with your future projects! :D
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