the block shadow, had to use border right and border bottom
Design comparison
Solution retrospective
when i wanted to add the block shadow at the rigth i was thinking how am i going to get that, but i thought i could use border right and bottom which i did and it works
What specific areas of your project would you like help with?responsive
Community feedback
- @AdrianoEscarabotePosted 22 days ago
Hey Odetoyinbo Pelumi, how’s it going? I was really impressed with your project’s result, though I have some advice that could be helpful:
Using Flexbox or Grid on the
body
to center elements ensures a more responsive and adaptive layout, fitting different screen sizes seamlessly. It avoids manual calculations and constant adjustments needed withmargin
,padding
, or absolute positioning. These techniques provide more consistent alignment and simplify the code.flexbox:
body { display: flex; justify-content: center; align-items: center; min-height: 100vh; }
grid:
body { display: grid; place-content: center; min-height: 100vh; }
Everything else looks great.
Hope this helps! 👍
Marked as helpful0@BbylumiPosted 17 days ago@AdrianoEscarabote thank you so much, going to adjust it now
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