Design comparison
Solution retrospective
I am proud of the structuring, it's similar to the last one so not much needed to be done. Nonetheless, I got more practice of using this kind of structuring and playing around with the positioning.
What challenges did you encounter, and how did you overcome them?I had some issues with mobile implementation. I still have them, but I fixed my sizing issues using width: 100% and height: auto;. This had fixed the problem I faced for a while.
What specific areas of your project would you like help with?I'd like help with how I can better structure this and/or where or how I should best be editing my sizing and etc.
Community feedback
- @sivaprasath2004Posted 6 months ago
Hello i`m wishing for your completion in this project.
- I will be see in your code
- In the
.attribution
tag will be inside of the footer tag because this is end of the content so I will suggest to change the HTML following format<footer><div class="attribution"></div></footer>
- In CSS You will use
.blog-picture { margin: 7px; }
- I will recomand for Using
rem
orem
values forpadding
andmargin
provides a scalable and flexible approach, especially when considering accessibility and responsive design. - change to
.blog-picture { margin: 0.7rem; }
0 - @0xabdulkhaliqPosted 6 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 #000; }
- 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