Design comparison
Solution retrospective
I am proud of my use of media queries. I've been struggling with media queries, but this is the first time i've used media queries intentionally. Although the use of media queries might not be the best, i am still glad i'm taking the right steps.
What challenges did you encounter, and how did you overcome them?The blog information was not spacing out how i would've liked. So i had to use individual styles to adjust the margin-top properties.
What specific areas of your project would you like help with?If there are any areas that you think i need to improve, i would love feedback.
Community feedback
- @0xabdulkhaliqPosted 5 months ago
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have a suggestion regarding your code that I believe will be of great interest to you.
ADDING HOVER STATE 🪄:
- Looks like the component hover state with
box-shadow
has not been set yet. Your solution would be perfectly finished if you add this as a finishing touch!
- Just add the following css rules
.container { transition: box-shadow .3s; } .container:hover { box-shadow: 12px 13px 0px 1px #000E; }
- Now your component's hover shadows has been set properly
.
I hope you find this helpful 😄 Above all, the solution you submitted is great !
Happy coding!
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