Design comparison
Solution retrospective
I'm most proud of being able to finish the challenge faster than the previous ones.
What challenges did you encounter, and how did you overcome them?A challenge I encountered was the trying to layout the buttons evenly within the container.
What specific areas of your project would you like help with?Any specific design modifications.
Community feedback
- @andrew-j-brownPosted 5 months ago
Hi Andee-K!
Your project looks great, and the links work well either tabbing or hovering!
You mentioned design modifications, so I'll give you a tip with the links. You can use css to make the cursor change into a pointer while hovering over an element! Also, I used the transition property to make the background color smoothly change (opacity to change the color). That's more of a subjective choice though lol
li { ... background-color: #2E4F4F; transition: 0.2s all; } li:hover { opacity: 80%; cursor: pointer; } li:has(a:focus) { opacity: 80%; }
I'll drop some links below regarding the above. Hope this is of help, have a great day!
https://developer.mozilla.org/en-US/docs/Web/CSS/transition
https://developer.mozilla.org/en-US/docs/Web/CSS/cursor
Marked as helpful1
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